{"id":81539,"name":"getsentry/craft","ecosystem":"actions","repository_url":"https://github.com/getsentry/craft","issues_count":25,"created_at":"2026-01-13T09:07:14.484Z","updated_at":"2026-01-13T09:07:14.484Z","purl":"pkg:githubactions/getsentry/craft","metadata":{"id":12682352,"name":"getsentry/craft","ecosystem":"actions","description":"Prepare a new release using Craft","homepage":"https://getsentry.github.io/craft/","licenses":"mit","normalized_licenses":["MIT"],"repository_url":"https://github.com/getsentry/craft","keywords_array":["cli","craft","google-cloud-storage","npm","nuget","packaging","pypi","release-automation","rust-crate","sentry","sentry-release-registry","tag-production","typescript"],"namespace":"getsentry","versions_count":204,"first_release_published_at":"2018-06-28T15:07:00.000Z","latest_release_published_at":"2026-01-12T21:15:01.000Z","latest_release_number":"2.18.3","last_synced_at":"2026-01-16T13:59:37.973Z","created_at":"2026-01-16T13:58:29.130Z","updated_at":"2026-01-16T13:59:39.954Z","registry_url":"https://github.com/getsentry/craft","install_command":null,"documentation_url":null,"metadata":{"name":"Craft Prepare Release","description":"Prepare a new release using Craft","inputs":{"version":{"description":"Version to release. Can be a semver string (e.g., \"1.2.3\"), a bump type (\"major\", \"minor\", \"patch\"), or \"auto\" for automatic detection.\n","required":false},"merge_target":{"description":"Target branch to merge into. Uses the default branch as a fallback.","required":false},"force":{"description":"Force a release even when there are release-blockers","required":false,"default":"false"},"blocker_label":{"description":"Label that blocks releases","required":false,"default":"release-blocker"},"publish_repo":{"description":"Repository for publish issues (owner/repo format)","required":false},"git_user_name":{"description":"Git committer name","required":false},"git_user_email":{"description":"Git committer email","required":false},"path":{"description":"The path that Craft will run inside","required":false,"default":"."},"craft_config_from_merge_target":{"description":"Use the craft config from the merge target branch","required":false,"default":"false"},"craft_version":{"description":"Version of Craft to install (tag or \"latest\"). Defaults to the action ref (e.g., \"v2\") if not specified.\n","required":false,"default":""}},"outputs":{"version":{"description":"The resolved version being released","value":"${{ steps.craft.outputs.version }}"},"branch":{"description":"The release branch name","value":"${{ steps.craft.outputs.branch }}"},"sha":{"description":"The commit SHA on the release branch","value":"${{ steps.craft.outputs.sha }}"},"previous_tag":{"description":"The tag before this release (for diff links)","value":"${{ steps.craft.outputs.previous_tag }}"},"changelog":{"description":"The changelog for this release","value":"${{ steps.craft.outputs.changelog }}"}},"runs":{"using":"composite","steps":[{"id":"killswitch","name":"Check release blockers","shell":"bash","run":"if [[ '${{ inputs.force }}' != 'true' ]] \u0026\u0026 gh issue list -l '${{ inputs.blocker_label }}' -s open | grep -q '^[0-9]\\+[[:space:]]'; then\n  echo \"::error::Open release-blocking issues found (label: ${{ inputs.blocker_label }}), cancelling release...\"\n  gh api -X POST repos/:owner/:repo/actions/runs/$GITHUB_RUN_ID/cancel\nfi\n"},{"name":"Set git user","shell":"bash","run":"# Use provided values or fall back to triggering actor\nGIT_USER_NAME='${{ inputs.git_user_name }}'\nGIT_USER_EMAIL='${{ inputs.git_user_email }}'\n\nif [[ -z \"$GIT_USER_NAME\" ]]; then\n  GIT_USER_NAME=\"${GITHUB_ACTOR}\"\nfi\nif [[ -z \"$GIT_USER_EMAIL\" ]]; then\n  GIT_USER_EMAIL=\"${GITHUB_ACTOR_ID}+${GITHUB_ACTOR}@users.noreply.github.com\"\nfi\n\necho \"GIT_COMMITTER_NAME=${GIT_USER_NAME}\" \u003e\u003e $GITHUB_ENV\necho \"GIT_AUTHOR_NAME=${GIT_USER_NAME}\" \u003e\u003e $GITHUB_ENV\necho \"EMAIL=${GIT_USER_EMAIL}\" \u003e\u003e $GITHUB_ENV\n"},{"name":"Download Craft from build artifact","id":"craft-artifact","if":"github.repository == 'getsentry/craft'","uses":"actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16","with":{"name":"${{ github.sha }}","path":"/tmp/craft-artifact"}},{"name":"Install Craft from artifact or release","shell":"bash","run":"set -euo pipefail\n\nif [[ -f /tmp/craft-artifact/dist/craft ]]; then\n  echo \"Installing Craft from build artifact...\"\n  sudo install -m 755 /tmp/craft-artifact/dist/craft /usr/local/bin/craft\nelse\n  # Download from release (for external repos or if artifact unavailable)\n  # Use explicit craft_version input if provided, otherwise fall back to github.action_ref\n  CRAFT_VERSION=\"${{ inputs.craft_version }}\"\n  if [[ -z \"$CRAFT_VERSION\" ]]; then\n    CRAFT_VERSION=\"${{ github.action_ref }}\"\n  fi\n\n  if [[ \"$CRAFT_VERSION\" == \"latest\" || -z \"$CRAFT_VERSION\" ]]; then\n    echo \"Downloading latest Craft release...\"\n    CRAFT_URL=$(curl -fsSL \"https://api.github.com/repos/getsentry/craft/releases/latest\" \\\n      | jq -r '.assets[] | select(.name == \"craft\") | .browser_download_url')\n  else\n    CRAFT_URL=\"https://github.com/getsentry/craft/releases/download/${CRAFT_VERSION}/craft\"\n    echo \"Downloading Craft ${CRAFT_VERSION} from: ${CRAFT_URL}\"\n\n    # Fallback to latest if specified version doesn't have a release\n    if ! curl -sfI \"$CRAFT_URL\" \u003e/dev/null 2\u003e\u00261; then\n      echo \"Release not found for version '${CRAFT_VERSION}', falling back to latest...\"\n      CRAFT_URL=$(curl -fsSL \"https://api.github.com/repos/getsentry/craft/releases/latest\" \\\n        | jq -r '.assets[] | select(.name == \"craft\") | .browser_download_url')\n    fi\n  fi\n\n  # Verify we have a valid URL\n  if [[ -z \"$CRAFT_URL\" ]]; then\n    echo \"::error::Failed to determine Craft download URL. The GitHub API may have failed or the release asset is missing.\"\n    exit 1\n  fi\n\n  echo \"Installing Craft from: ${CRAFT_URL}\"\n  sudo curl -fsSL -o /usr/local/bin/craft \"$CRAFT_URL\"\n  sudo chmod +x /usr/local/bin/craft\n  \n  # Verify the binary was downloaded successfully\n  if [[ ! -s /usr/local/bin/craft ]]; then\n    echo \"::error::Downloaded Craft binary is empty or missing\"\n    exit 1\n  fi\nfi\n"},{"name":"Craft Prepare","id":"craft","shell":"bash","env":{"CRAFT_LOG_LEVEL":"Debug"},"working-directory":"${{ inputs.path }}","run":"# Ensure we have origin/HEAD set\ngit remote set-head origin --auto\n\n# Build command with optional flags\nCRAFT_ARGS=\"\"\nif [[ '${{ inputs.craft_config_from_merge_target }}' == 'true' \u0026\u0026 -n '${{ inputs.merge_target }}' ]]; then\n  CRAFT_ARGS=\"--config-from ${{ inputs.merge_target }}\"\nfi\n\n# Version is optional - if not provided, Craft uses versioning.policy from config\nVERSION_ARG=\"\"\nif [[ -n '${{ inputs.version }}' ]]; then\n  VERSION_ARG=\"${{ inputs.version }}\"\nfi\n\ncraft prepare $VERSION_ARG $CRAFT_ARGS\n"},{"name":"Read Craft Targets","id":"craft-targets","shell":"bash","working-directory":"${{ inputs.path }}","env":{"CRAFT_LOG_LEVEL":"Warn"},"run":"targets=$(craft targets | jq -r '.[]|\" - [ ] \\(.)\"')\n\n# https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-strings\necho \"targets\u003c\u003cEOF\" \u003e\u003e \"$GITHUB_OUTPUT\"\necho \"$targets\" \u003e\u003e \"$GITHUB_OUTPUT\"\necho \"EOF\" \u003e\u003e \"$GITHUB_OUTPUT\"\n"},{"name":"Request publish","shell":"bash","run":"if [[ '${{ inputs.path }}' == '.' ]]; then\n  subdirectory=''\nelse\n  subdirectory='/${{ inputs.path }}'\nfi\n\nif [[ -n '${{ inputs.merge_target }}' ]]; then\n  merge_target='${{ inputs.merge_target }}'\nelse\n  merge_target='(default)'\nfi\n\n# Use resolved version from Craft output\nRESOLVED_VERSION=\"${{ steps.craft.outputs.version }}\"\nif [[ -z \"$RESOLVED_VERSION\" ]]; then\n  echo \"::error::Craft did not output a version. This is unexpected.\"\n  exit 1\nfi\n\ntitle=\"publish: ${GITHUB_REPOSITORY}${subdirectory}@${RESOLVED_VERSION}\"\n\n# Determine publish repo\nPUBLISH_REPO='${{ inputs.publish_repo }}'\nif [[ -z \"$PUBLISH_REPO\" ]]; then\n  PUBLISH_REPO=\"${GITHUB_REPOSITORY_OWNER}/publish\"\nfi\n\n# Check if issue already exists\n# GitHub only allows search with the \"in\" operator and this issue search can\n# return non-exact matches. We extract the titles and check with grep -xF\nif gh -R \"$PUBLISH_REPO\" issue list -S \"'$title' in:title\" --json title -q '.[] | .title' | grep -qxF -- \"$title\"; then\n  echo \"There's already an open publish request, skipped issue creation.\"\n  exit 0\nfi\n\n# Use Craft outputs for git info\nRELEASE_BRANCH=\"${{ steps.craft.outputs.branch }}\"\nRELEASE_SHA=\"${{ steps.craft.outputs.sha }}\"\nPREVIOUS_TAG=\"${{ steps.craft.outputs.previous_tag }}\"\n\n# Fall back to HEAD if no previous tag\nif [[ -z \"$PREVIOUS_TAG\" ]]; then\n  PREVIOUS_TAG=\"HEAD\"\nfi\n\n# Build changelog section if available\nCHANGELOG='${{ steps.craft.outputs.changelog }}'\nif [[ -n \"$CHANGELOG\" ]]; then\n  CHANGELOG_SECTION=\"\n---\n\n\u003cdetails\u003e\n\u003csummary\u003e📋 Changelog\u003c/summary\u003e\n\n${CHANGELOG}\n\n\u003c/details\u003e\"\nelse\n  CHANGELOG_SECTION=\"\"\nfi\n\nbody=\"Requested by: @${GITHUB_ACTOR}\n\nMerge target: ${merge_target}\n\nQuick links:\n- [View changes](https://github.com/${GITHUB_REPOSITORY}/compare/${PREVIOUS_TAG}...${RELEASE_BRANCH})\n- [View check runs](https://github.com/${GITHUB_REPOSITORY}/commit/${RELEASE_SHA}/checks/)\n\nAssign the **accepted** label to this issue to approve the release.\nTo retract the release, the person requesting it must leave a comment containing \\`#retract\\` on a line by itself under this issue.\n\n### Targets\n\n${{ steps.craft-targets.outputs.targets }}\n\nChecked targets will be skipped (either already published or user-requested skip). Uncheck to retry a target.\n${CHANGELOG_SECTION}\"\ngh issue create -R \"$PUBLISH_REPO\" --title \"$title\" --body \"$body\"\n"}]},"default_branch":"master","path":null},"repo_metadata":{},"repo_metadata_updated_at":null,"dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{},"purl":"pkg:githubactions/getsentry/craft","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/actions/getsentry/craft","docker_dependents_count":null,"docker_downloads_count":null,"usage_url":"https://repos.ecosyste.ms/usage/actions/getsentry/craft","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/actions/getsentry/craft/dependencies","status":null,"funding_links":[],"critical":null,"issue_metadata":null,"versions_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/getsentry%2Fcraft/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/getsentry%2Fcraft/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/getsentry%2Fcraft/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/getsentry%2Fcraft/related_packages","codemeta_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/getsentry%2Fcraft/codemeta","maintainers":[],"registry":{"name":"github actions","url":"https://github.com/marketplace/actions/","ecosystem":"actions","default":true,"packages_count":32348,"maintainers_count":0,"namespaces_count":20282,"keywords_count":7946,"github":"actions","metadata":{"funded_packages_count":4016},"icon_url":"https://github.com/actions.png","created_at":"2023-01-03T17:16:39.185Z","updated_at":"2026-01-16T07:21:24.597Z","packages_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages","maintainers_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/maintainers","namespaces_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/namespaces"}},"unique_repositories_count":13,"unique_repositories_count_past_30_days":3,"recent_issues":[{"uuid":"4575111706","node_id":"PR_kwDOADLKPM7h-fEh","number":21299,"state":"closed","title":"ci(deps): Bump getsentry/craft from 2.26.2 to 2.26.6","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-10T14:03:35.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-02T21:32:16.000Z","updated_at":"2026-06-10T14:03:37.000Z","time_to_close":664279,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"ci(deps): Bump","packages":[{"name":"getsentry/craft","old_version":"2.26.2","new_version":"2.26.6","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.26.2 to 2.26.6.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.26.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(nuget) Move global.json aside during \u003ccode\u003edotnet setversion\u003c/code\u003e by \u003ca href=\"https://github.com/jamescrosswell\"\u003e\u003ccode\u003e@​jamescrosswell\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/820\"\u003e#820\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Override \u003ccode\u003e@​tootallnate/once\u003c/code\u003e to ^2.0.1 (CVE-2026-3449) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/822\"\u003e#822\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove partial publishing recovery for CocoaPods and GitHub targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/821\"\u003e#821\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Bump devalue override to ^5.8.1 (CVE-2026-42570) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/818\"\u003e#818\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Prevent script injection in changelog-preview workflow by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/813\"\u003e#813\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eResolve open dependabot security alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/816\"\u003e#816\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump simple-git from 3.33.0 to 3.36.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/814\"\u003e#814\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePrevent shell injection vulnerabilities in GitHub Actions workflows by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/811\"\u003e#811\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.26.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(nuget) Move global.json aside during \u003ccode\u003edotnet setversion\u003c/code\u003e by \u003ca href=\"https://github.com/jamescrosswell\"\u003e\u003ccode\u003e@​jamescrosswell\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/820\"\u003e#820\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Override \u003ccode\u003e@​tootallnate/once\u003c/code\u003e to ^2.0.1 (CVE-2026-3449) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/822\"\u003e#822\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove partial publishing recovery for CocoaPods and GitHub targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/821\"\u003e#821\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Bump devalue override to ^5.8.1 (CVE-2026-42570) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/818\"\u003e#818\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Prevent script injection in changelog-preview workflow by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/813\"\u003e#813\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eResolve open dependabot security alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/816\"\u003e#816\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump simple-git from 3.33.0 to 3.36.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/814\"\u003e#814\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePrevent shell injection vulnerabilities in GitHub Actions workflows by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/811\"\u003e#811\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.2\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/810\"\u003e#810\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(prepare) Remove --allow-remote-config gate by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/809\"\u003e#809\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.18.1 to 6.1.6 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/806\"\u003e#806\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.5.7 to 5.7.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/808\"\u003e#808\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3e6a0f477702864bb5854384b390a0db3325428e\"\u003e\u003ccode\u003e3e6a0f4\u003c/code\u003e\u003c/a\u003e release: 2.26.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/2662e81254403b708b6e5c33867023970065637d\"\u003e\u003ccode\u003e2662e81\u003c/code\u003e\u003c/a\u003e fix(security): override \u003ccode\u003e@​tootallnate/once\u003c/code\u003e to ^2.0.1 (CVE-2026-3449) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/822\"\u003e#822\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/e9a52384ec83ca5c3ff3bc8ab23de7ca03735867\"\u003e\u003ccode\u003ee9a5238\u003c/code\u003e\u003c/a\u003e fix: improve partial publishing recovery for CocoaPods and GitHub targets (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/821\"\u003e#821\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/da0e0c127b44eb0d068459e6fbd63478dd4fd848\"\u003e\u003ccode\u003eda0e0c1\u003c/code\u003e\u003c/a\u003e fix(nuget): move global.json aside during \u003ccode\u003edotnet setversion\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/820\"\u003e#820\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d1fa7db99ab95886732b0cd7fb83ccc14444ab6b\"\u003e\u003ccode\u003ed1fa7db\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ca52417b198130266c8131f3dbf5bc126b7e2eea\"\u003e\u003ccode\u003eca52417\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.5'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/bc2e6a9952e62250e5469d5a853a7a438692ccc1\"\u003e\u003ccode\u003ebc2e6a9\u003c/code\u003e\u003c/a\u003e release: 2.26.5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/60b80e5cc225989718235c710132ed21aa4cda8f\"\u003e\u003ccode\u003e60b80e5\u003c/code\u003e\u003c/a\u003e fix(security): bump devalue override to ^5.8.1 (CVE-2026-42570) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/818\"\u003e#818\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7bd293105a1819725fe96a720732e3a42eb76899\"\u003e\u003ccode\u003e7bd2931\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1389909e60043a0d86efaec861b826d1ea005d2a\"\u003e\u003ccode\u003e1389909\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.4'\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/3dc647fee3586e57c7c31eb900fdec7cbb44f23f...3e6a0f477702864bb5854384b390a0db3325428e\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.26.2\u0026new-version=2.26.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-javascript/pull/21299","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-javascript/issues/21299","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/21299/packages"},{"uuid":"4528668660","node_id":"PR_kwDORdMCOc7fomoM","number":37,"state":"closed","title":"Bump getsentry/craft from 2.20.1 to 2.26.6","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":6,"pull_request":true,"closed_at":"2026-06-09T21:05:04.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-27T01:16:34.000Z","updated_at":"2026-06-09T21:05:06.000Z","time_to_close":1194510,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"getsentry/craft","old_version":"2.20.1","new_version":"2.26.6","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.20.1 to 2.26.6.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.26.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(nuget) Move global.json aside during \u003ccode\u003edotnet setversion\u003c/code\u003e by \u003ca href=\"https://github.com/jamescrosswell\"\u003e\u003ccode\u003e@​jamescrosswell\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/820\"\u003e#820\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Override \u003ccode\u003e@​tootallnate/once\u003c/code\u003e to ^2.0.1 (CVE-2026-3449) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/822\"\u003e#822\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove partial publishing recovery for CocoaPods and GitHub targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/821\"\u003e#821\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Bump devalue override to ^5.8.1 (CVE-2026-42570) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/818\"\u003e#818\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Prevent script injection in changelog-preview workflow by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/813\"\u003e#813\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eResolve open dependabot security alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/816\"\u003e#816\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump simple-git from 3.33.0 to 3.36.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/814\"\u003e#814\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePrevent shell injection vulnerabilities in GitHub Actions workflows by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/811\"\u003e#811\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.2\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/810\"\u003e#810\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(prepare) Remove --allow-remote-config gate by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/809\"\u003e#809\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.18.1 to 6.1.6 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/806\"\u003e#806\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.5.7 to 5.7.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/808\"\u003e#808\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.1\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(release-env) Allowlist GITHUB_* and RUNNER_* by prefix by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/807\"\u003e#807\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Tolerate workspace:* deps in version bump and bun.lock patching by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/805\"\u003e#805\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.26.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(nuget) Move global.json aside during \u003ccode\u003edotnet setversion\u003c/code\u003e by \u003ca href=\"https://github.com/jamescrosswell\"\u003e\u003ccode\u003e@​jamescrosswell\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/820\"\u003e#820\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Override \u003ccode\u003e@​tootallnate/once\u003c/code\u003e to ^2.0.1 (CVE-2026-3449) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/822\"\u003e#822\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove partial publishing recovery for CocoaPods and GitHub targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/821\"\u003e#821\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Bump devalue override to ^5.8.1 (CVE-2026-42570) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/818\"\u003e#818\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Prevent script injection in changelog-preview workflow by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/813\"\u003e#813\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eResolve open dependabot security alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/816\"\u003e#816\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump simple-git from 3.33.0 to 3.36.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/814\"\u003e#814\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePrevent shell injection vulnerabilities in GitHub Actions workflows by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/811\"\u003e#811\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.2\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/810\"\u003e#810\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(prepare) Remove --allow-remote-config gate by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/809\"\u003e#809\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.18.1 to 6.1.6 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/806\"\u003e#806\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.5.7 to 5.7.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/808\"\u003e#808\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3e6a0f477702864bb5854384b390a0db3325428e\"\u003e\u003ccode\u003e3e6a0f4\u003c/code\u003e\u003c/a\u003e release: 2.26.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/2662e81254403b708b6e5c33867023970065637d\"\u003e\u003ccode\u003e2662e81\u003c/code\u003e\u003c/a\u003e fix(security): override \u003ccode\u003e@​tootallnate/once\u003c/code\u003e to ^2.0.1 (CVE-2026-3449) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/822\"\u003e#822\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/e9a52384ec83ca5c3ff3bc8ab23de7ca03735867\"\u003e\u003ccode\u003ee9a5238\u003c/code\u003e\u003c/a\u003e fix: improve partial publishing recovery for CocoaPods and GitHub targets (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/821\"\u003e#821\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/da0e0c127b44eb0d068459e6fbd63478dd4fd848\"\u003e\u003ccode\u003eda0e0c1\u003c/code\u003e\u003c/a\u003e fix(nuget): move global.json aside during \u003ccode\u003edotnet setversion\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/820\"\u003e#820\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d1fa7db99ab95886732b0cd7fb83ccc14444ab6b\"\u003e\u003ccode\u003ed1fa7db\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ca52417b198130266c8131f3dbf5bc126b7e2eea\"\u003e\u003ccode\u003eca52417\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.5'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/bc2e6a9952e62250e5469d5a853a7a438692ccc1\"\u003e\u003ccode\u003ebc2e6a9\u003c/code\u003e\u003c/a\u003e release: 2.26.5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/60b80e5cc225989718235c710132ed21aa4cda8f\"\u003e\u003ccode\u003e60b80e5\u003c/code\u003e\u003c/a\u003e fix(security): bump devalue override to ^5.8.1 (CVE-2026-42570) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/818\"\u003e#818\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7bd293105a1819725fe96a720732e3a42eb76899\"\u003e\u003ccode\u003e7bd2931\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1389909e60043a0d86efaec861b826d1ea005d2a\"\u003e\u003ccode\u003e1389909\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.4'\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/beea4aba589c66381258cbd131c5551ae8245b82...3e6a0f477702864bb5854384b390a0db3325428e\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.20.1\u0026new-version=2.26.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/ghcpd/v-ShuLiu_26_03_03_case1/pull/37","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghcpd%2Fv-ShuLiu_26_03_03_case1/issues/37","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/37/packages"},{"uuid":"4473525349","node_id":"PR_kwDOBeVNvs7c32oN","number":3706,"state":"open","title":"build(deps): bump getsentry/craft from 2.26.3 to 2.26.5","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-19T00:32:50.000Z","updated_at":"2026-05-19T00:33:23.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.26.3","new_version":"2.26.5","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.26.3 to 2.26.5.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.26.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Bump devalue override to ^5.8.1 (CVE-2026-42570) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/818\"\u003e#818\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Prevent script injection in changelog-preview workflow by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/813\"\u003e#813\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eResolve open dependabot security alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/816\"\u003e#816\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump simple-git from 3.33.0 to 3.36.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/814\"\u003e#814\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.26.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Bump devalue override to ^5.8.1 (CVE-2026-42570) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/818\"\u003e#818\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Prevent script injection in changelog-preview workflow by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/813\"\u003e#813\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eResolve open dependabot security alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/816\"\u003e#816\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump simple-git from 3.33.0 to 3.36.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/814\"\u003e#814\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePrevent shell injection vulnerabilities in GitHub Actions workflows by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/811\"\u003e#811\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.2\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/810\"\u003e#810\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(prepare) Remove --allow-remote-config gate by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/809\"\u003e#809\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.18.1 to 6.1.6 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/806\"\u003e#806\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.5.7 to 5.7.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/808\"\u003e#808\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.1\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(release-env) Allowlist GITHUB_* and RUNNER_* by prefix by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/807\"\u003e#807\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Tolerate workspace:* deps in version bump and bun.lock patching by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/805\"\u003e#805\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/bc2e6a9952e62250e5469d5a853a7a438692ccc1\"\u003e\u003ccode\u003ebc2e6a9\u003c/code\u003e\u003c/a\u003e release: 2.26.5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/60b80e5cc225989718235c710132ed21aa4cda8f\"\u003e\u003ccode\u003e60b80e5\u003c/code\u003e\u003c/a\u003e fix(security): bump devalue override to ^5.8.1 (CVE-2026-42570) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/818\"\u003e#818\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7bd293105a1819725fe96a720732e3a42eb76899\"\u003e\u003ccode\u003e7bd2931\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1389909e60043a0d86efaec861b826d1ea005d2a\"\u003e\u003ccode\u003e1389909\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.4'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/70714dda896a3f5d5ad0a3e55b1d73a64ee7bf8f\"\u003e\u003ccode\u003e70714dd\u003c/code\u003e\u003c/a\u003e release: 2.26.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/a7098dacedd5059c79c16f91904fbf9d5ad7452e\"\u003e\u003ccode\u003ea7098da\u003c/code\u003e\u003c/a\u003e fix: resolve open dependabot security alerts (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/816\"\u003e#816\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ebbd176584274b992ba3d0571c02d63d059ba1c8\"\u003e\u003ccode\u003eebbd176\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump simple-git from 3.33.0 to 3.36.0 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/814\"\u003e#814\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/134b6504b320fe5c0cb320143451ff0c416d1b5b\"\u003e\u003ccode\u003e134b650\u003c/code\u003e\u003c/a\u003e fix(security): Prevent script injection in changelog-preview workflow (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/813\"\u003e#813\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/e04c7038371fc9b874a6df2ca18ab667e7f6f61d\"\u003e\u003ccode\u003ee04c703\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/0589632c86a4e90293b982df8bfecc3afce3e36c\"\u003e\u003ccode\u003e0589632\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.3'\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/getsentry/craft/compare/bae212ca7aec50bb716eafd387c80bcfb28da937...bc2e6a9952e62250e5469d5a853a7a438692ccc1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.26.3\u0026new-version=2.26.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-dart/pull/3706","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-dart/issues/3706","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3706/packages"},{"uuid":"4332962084","node_id":"PR_kwDOCDbi-87V0SQ0","number":6142,"state":"open","title":"build(deps): bump getsentry/craft from 2.25.4 to 2.26.2","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-04-27T03:53:10.000Z","updated_at":"2026-04-27T03:59:35.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.25.4","new_version":"2.26.2","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.25.4 to 2.26.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.26.2\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/810\"\u003e#810\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(prepare) Remove --allow-remote-config gate by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/809\"\u003e#809\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.18.1 to 6.1.6 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/806\"\u003e#806\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.5.7 to 5.7.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/808\"\u003e#808\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.1\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(release-env) Allowlist GITHUB_* and RUNNER_* by prefix by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/807\"\u003e#807\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Tolerate workspace:* deps in version bump and bun.lock patching by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/805\"\u003e#805\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix Node 20 + app-id deprecation warnings, refresh Node matrix by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/803\"\u003e#803\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.0\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ci) Pin third-party GitHub Actions to commit SHAs by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/801\"\u003e#801\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(commit-repo) Replace execSync tar with node-tar by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/799\"\u003e#799\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gpg) Pipe private key via stdin instead of writing to /tmp by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/798\"\u003e#798\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Move publish-state file out of repo cwd by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/797\"\u003e#797\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(spawn) Strip dynamic-linker env vars from subprocess env by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/800\"\u003e#800\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRecognize \u003ccode\u003esecurity:\u003c/code\u003e commit prefix for changelog and versioning by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/802\"\u003e#802\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003ch4\u003eSecurity\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eMove workflow to pull_request and do not persist creds by \u003ca href=\"https://github.com/geoffg-sentry\"\u003e\u003ccode\u003e@​geoffg-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/796\"\u003e#796\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDisable .craft.env reading and harden release subprocess env by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/794\"\u003e#794\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.26.2\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/810\"\u003e#810\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(prepare) Remove --allow-remote-config gate by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/809\"\u003e#809\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.18.1 to 6.1.6 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/806\"\u003e#806\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.5.7 to 5.7.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/808\"\u003e#808\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.1\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(release-env) Allowlist GITHUB_* and RUNNER_* by prefix by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/807\"\u003e#807\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Tolerate workspace:* deps in version bump and bun.lock patching by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/805\"\u003e#805\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix Node 20 + app-id deprecation warnings, refresh Node matrix by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/803\"\u003e#803\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.0\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ci) Pin third-party GitHub Actions to commit SHAs by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/801\"\u003e#801\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(commit-repo) Replace execSync tar with node-tar by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/799\"\u003e#799\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gpg) Pipe private key via stdin instead of writing to /tmp by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/798\"\u003e#798\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Move publish-state file out of repo cwd by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/797\"\u003e#797\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(spawn) Strip dynamic-linker env vars from subprocess env by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/800\"\u003e#800\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRecognize \u003ccode\u003esecurity:\u003c/code\u003e commit prefix for changelog and versioning by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/802\"\u003e#802\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003ch4\u003eSecurity\u003c/h4\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3dc647fee3586e57c7c31eb900fdec7cbb44f23f\"\u003e\u003ccode\u003e3dc647f\u003c/code\u003e\u003c/a\u003e release: 2.26.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3739fa14b4cdeb60f755f69cca623ecb57f46608\"\u003e\u003ccode\u003e3739fa1\u003c/code\u003e\u003c/a\u003e security(deps): bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/810\"\u003e#810\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/86fd3dadc299588db78108b6792351352c969c0e\"\u003e\u003ccode\u003e86fd3da\u003c/code\u003e\u003c/a\u003e fix(prepare): remove --allow-remote-config gate (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/809\"\u003e#809\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3294203f73cc00ba13488b649b228b11254a68c8\"\u003e\u003ccode\u003e3294203\u003c/code\u003e\u003c/a\u003e build(deps): bump astro from 5.18.1 to 6.1.6 in /docs (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/806\"\u003e#806\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ad5568e7715d729e221734493cca255d86d7f722\"\u003e\u003ccode\u003ead5568e\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump fast-xml-parser from 5.5.7 to 5.7.0 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/808\"\u003e#808\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/19b7281452e83e8bbe69d003fd28f1829f47700f\"\u003e\u003ccode\u003e19b7281\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/a8d2fd6d6be122c0a3a319f3358f0851127b1520\"\u003e\u003ccode\u003ea8d2fd6\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.1'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/c248b38be4dbcdb95ba538f39a2336d7dd12b9f7\"\u003e\u003ccode\u003ec248b38\u003c/code\u003e\u003c/a\u003e release: 2.26.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/c5c5d7a9e557efca12f84ed3c4cc5f83447fed11\"\u003e\u003ccode\u003ec5c5d7a\u003c/code\u003e\u003c/a\u003e security(release-env): allowlist GITHUB_* and RUNNER_* by prefix (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/807\"\u003e#807\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/2ec39c05f6bb5356fa5eb069982b661010d2b0a8\"\u003e\u003ccode\u003e2ec39c0\u003c/code\u003e\u003c/a\u003e fix(npm): tolerate workspace:* deps in version bump and bun.lock patching (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/805\"\u003e#805\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/97d0c4286f32a80d09c8b89366d762fecc3e27b6...3dc647fee3586e57c7c31eb900fdec7cbb44f23f\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.25.4\u0026new-version=2.26.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-python/pull/6142","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-python/issues/6142","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/6142/packages"},{"uuid":"4292976311","node_id":"PR_kwDOCDbi-87Tz2CT","number":6096,"state":"open","title":"build(deps): bump getsentry/craft from 2.25.2 to 2.25.4","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-04-20T03:53:10.000Z","updated_at":"2026-04-20T03:59:49.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.25.2","new_version":"2.25.4","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.25.2 to 2.25.4.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.25.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(publish) Replace CRAFT_NEW_VERSION with CRAFT_RELEASED_VERSION in post-release env by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/793\"\u003e#793\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security vulnerabilities in vite, picomatch, and defu by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/791\"\u003e#791\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Distinguish auth failures from merge conflicts in post-publish merge by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/788\"\u003e#788\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.25.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(publish) Replace CRAFT_NEW_VERSION with CRAFT_RELEASED_VERSION in post-release env by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/793\"\u003e#793\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security vulnerabilities in vite, picomatch, and defu by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/791\"\u003e#791\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Distinguish auth failures from merge conflicts in post-publish merge by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/788\"\u003e#788\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePreserve HTML blocks (e.g., \u003ccode\u003e\u0026lt;img\u0026gt;\u003c/code\u003e tags from GitHub image uploads) in custom \u003ccode\u003e## Changelog Entry\u003c/code\u003e PR sections instead of silently dropping them. by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/786\"\u003e#786\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps) Bump brace-expansion from 5.0.4 to 5.0.5 by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/787\"\u003e#787\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpgrade GitHub Actions to Node.js 24 compatible versions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/784\"\u003e#784\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.16.11 to 5.18.1 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/785\"\u003e#785\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/783\"\u003e#783\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCommit changelog even when preReleaseCommand returns false by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/781\"\u003e#781\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eReformat codebase with Prettier and add CI enforcement by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/782\"\u003e#782\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(registry) Require and validate registry metadata on first publish by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/777\"\u003e#777\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for fast-xml-parser, h3, and flatted by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/780\"\u003e#780\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Make post-publish merge failure non-fatal with resolve strategy retry by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/778\"\u003e#778\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/97d0c4286f32a80d09c8b89366d762fecc3e27b6\"\u003e\u003ccode\u003e97d0c42\u003c/code\u003e\u003c/a\u003e release: 2.25.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6e59f3bf6ca5008a6d23254a9b54b519f6b30a6e\"\u003e\u003ccode\u003e6e59f3b\u003c/code\u003e\u003c/a\u003e fix(publish): replace CRAFT_NEW_VERSION with CRAFT_RELEASED_VERSION in post-r...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/885f168ceaf33b2f2a5549b2fa1504a25a2479cf\"\u003e\u003ccode\u003e885f168\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6903199370b867ae64c3e068158b49e614ab714b\"\u003e\u003ccode\u003e6903199\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.25.3'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/9a8e27a89529970cc0f241c6b77fdcbc32838c03\"\u003e\u003ccode\u003e9a8e27a\u003c/code\u003e\u003c/a\u003e release: 2.25.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6ba86bc9ae3839790be7357bba5514a45a97fb53\"\u003e\u003ccode\u003e6ba86bc\u003c/code\u003e\u003c/a\u003e fix(deps): address security vulnerabilities in vite, picomatch, and defu (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/791\"\u003e#791\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/f081abe071b1d8f9ede79ff21b12d679c6e77f4e\"\u003e\u003ccode\u003ef081abe\u003c/code\u003e\u003c/a\u003e fix(publish): distinguish auth failures from merge conflicts in post-publish ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/dab9468687ef82c0e0384f73cae03fcac032032f\"\u003e\u003ccode\u003edab9468\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3c9e16f72aee7e1dd12d8b9ae2d6e989495b10f4\"\u003e\u003ccode\u003e3c9e16f\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.25.2'\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/getsentry/craft/compare/ba01e596c4a4c07692f0de10b0d4fe05f3dd0292...97d0c4286f32a80d09c8b89366d762fecc3e27b6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.25.2\u0026new-version=2.25.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-python/pull/6096","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-python/issues/6096","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/6096/packages"},{"uuid":"4167010419","node_id":"PR_kwDOCDbi-87OeUCX","number":5911,"state":"open","title":"build(deps): bump getsentry/craft from 2.25.0 to 2.25.2","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-03-30T03:53:29.000Z","updated_at":"2026-03-30T03:59:48.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.25.0","new_version":"2.25.2","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.25.0 to 2.25.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.25.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePreserve HTML blocks (e.g., \u003ccode\u003e\u0026lt;img\u0026gt;\u003c/code\u003e tags from GitHub image uploads) in custom \u003ccode\u003e## Changelog Entry\u003c/code\u003e PR sections instead of silently dropping them. by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/786\"\u003e#786\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps) Bump brace-expansion from 5.0.4 to 5.0.5 by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/787\"\u003e#787\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpgrade GitHub Actions to Node.js 24 compatible versions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/784\"\u003e#784\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.16.11 to 5.18.1 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/785\"\u003e#785\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/783\"\u003e#783\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCommit changelog even when preReleaseCommand returns false by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/781\"\u003e#781\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eReformat codebase with Prettier and add CI enforcement by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/782\"\u003e#782\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.25.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePreserve HTML blocks (e.g., \u003ccode\u003e\u0026lt;img\u0026gt;\u003c/code\u003e tags from GitHub image uploads) in custom \u003ccode\u003e## Changelog Entry\u003c/code\u003e PR sections instead of silently dropping them. by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/786\"\u003e#786\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps) Bump brace-expansion from 5.0.4 to 5.0.5 by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/787\"\u003e#787\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpgrade GitHub Actions to Node.js 24 compatible versions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/784\"\u003e#784\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.16.11 to 5.18.1 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/785\"\u003e#785\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/783\"\u003e#783\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCommit changelog even when preReleaseCommand returns false by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/781\"\u003e#781\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eReformat codebase with Prettier and add CI enforcement by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/782\"\u003e#782\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(registry) Require and validate registry metadata on first publish by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/777\"\u003e#777\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for fast-xml-parser, h3, and flatted by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/780\"\u003e#780\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Make post-publish merge failure non-fatal with resolve strategy retry by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/778\"\u003e#778\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.8 to 5.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/779\"\u003e#779\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for flatted and devalue by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/775\"\u003e#775\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(prepare) Handle scoped tag prefixes in auto version resolution by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/773\"\u003e#773\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate CI actions from Node.js 20 SHA pins to latest by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/774\"\u003e#774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ba01e596c4a4c07692f0de10b0d4fe05f3dd0292\"\u003e\u003ccode\u003eba01e59\u003c/code\u003e\u003c/a\u003e release: 2.25.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/507962acac92471452229b89fec259a4ca653ca3\"\u003e\u003ccode\u003e507962a\u003c/code\u003e\u003c/a\u003e fix(deps): bump brace-expansion from 5.0.4 to 5.0.5 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/787\"\u003e#787\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b811104f3055861eb15da872b8815fd743ceace9\"\u003e\u003ccode\u003eb811104\u003c/code\u003e\u003c/a\u003e build(deps): bump astro from 5.16.11 to 5.18.1 in /docs (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/785\"\u003e#785\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/a3ad8d359bd980a9618ba505031407bb98ba9af2\"\u003e\u003ccode\u003ea3ad8d3\u003c/code\u003e\u003c/a\u003e fix(changelog): preserve HTML blocks in custom changelog entry sections (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/786\"\u003e#786\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d80bdf5838fc61ebf98313f6a20f698b5700a4cd\"\u003e\u003ccode\u003ed80bdf5\u003c/code\u003e\u003c/a\u003e fix: upgrade GitHub Actions to Node.js 24 compatible versions (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/784\"\u003e#784\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/390ea43f4f980826b8b4d69a70e43dbcb4bf6401\"\u003e\u003ccode\u003e390ea43\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/724f9ff5547e18da11439853a05210f15c9540e7\"\u003e\u003ccode\u003e724f9ff\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.25.1'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/14aca37e23aa6d8239a4013cae86d3bae4b4e0cd\"\u003e\u003ccode\u003e14aca37\u003c/code\u003e\u003c/a\u003e release: 2.25.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7223a48b850b70701693c40177eb96ad0649a6a4\"\u003e\u003ccode\u003e7223a48\u003c/code\u003e\u003c/a\u003e fix(deps): address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/783\"\u003e#783\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/63ed0bf871983d6b02a9d10d9d8f1ddb9105b332\"\u003e\u003ccode\u003e63ed0bf\u003c/code\u003e\u003c/a\u003e chore: reformat codebase with Prettier and add CI enforcement (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/782\"\u003e#782\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/f4889d04564e47311038ecb6b910fef6b6cf1363...ba01e596c4a4c07692f0de10b0d4fe05f3dd0292\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.25.0\u0026new-version=2.25.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-python/pull/5911","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-python/issues/5911","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5911/packages"},{"uuid":"4155249240","node_id":"PR_kwDOA09jXc7OIuzM","number":7748,"state":"closed","title":"chore(deps): bump getsentry/craft from 2.25.0 to 2.25.2","user":"dependabot[bot]","labels":["dependencies","ready-to-merge","violating-contribution-guidelines","issue-already-assigned"],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":"2026-03-27T19:04:42.000Z","author_association":null,"state_reason":null,"created_at":"2026-03-27T19:04:22.000Z","updated_at":"2026-03-27T19:18:06.000Z","time_to_close":20,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"getsentry/craft","old_version":"2.25.0","new_version":"2.25.2","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.25.0 to 2.25.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.25.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePreserve HTML blocks (e.g., \u003ccode\u003e\u0026lt;img\u0026gt;\u003c/code\u003e tags from GitHub image uploads) in custom \u003ccode\u003e## Changelog Entry\u003c/code\u003e PR sections instead of silently dropping them. by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/786\"\u003e#786\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps) Bump brace-expansion from 5.0.4 to 5.0.5 by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/787\"\u003e#787\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpgrade GitHub Actions to Node.js 24 compatible versions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/784\"\u003e#784\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.16.11 to 5.18.1 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/785\"\u003e#785\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/783\"\u003e#783\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCommit changelog even when preReleaseCommand returns false by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/781\"\u003e#781\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eReformat codebase with Prettier and add CI enforcement by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/782\"\u003e#782\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.25.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePreserve HTML blocks (e.g., \u003ccode\u003e\u0026lt;img\u0026gt;\u003c/code\u003e tags from GitHub image uploads) in custom \u003ccode\u003e## Changelog Entry\u003c/code\u003e PR sections instead of silently dropping them. by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/786\"\u003e#786\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps) Bump brace-expansion from 5.0.4 to 5.0.5 by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/787\"\u003e#787\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpgrade GitHub Actions to Node.js 24 compatible versions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/784\"\u003e#784\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.16.11 to 5.18.1 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/785\"\u003e#785\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/783\"\u003e#783\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCommit changelog even when preReleaseCommand returns false by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/781\"\u003e#781\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eReformat codebase with Prettier and add CI enforcement by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/782\"\u003e#782\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(registry) Require and validate registry metadata on first publish by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/777\"\u003e#777\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for fast-xml-parser, h3, and flatted by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/780\"\u003e#780\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Make post-publish merge failure non-fatal with resolve strategy retry by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/778\"\u003e#778\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.8 to 5.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/779\"\u003e#779\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for flatted and devalue by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/775\"\u003e#775\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(prepare) Handle scoped tag prefixes in auto version resolution by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/773\"\u003e#773\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate CI actions from Node.js 20 SHA pins to latest by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/774\"\u003e#774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ba01e596c4a4c07692f0de10b0d4fe05f3dd0292\"\u003e\u003ccode\u003eba01e59\u003c/code\u003e\u003c/a\u003e release: 2.25.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/507962acac92471452229b89fec259a4ca653ca3\"\u003e\u003ccode\u003e507962a\u003c/code\u003e\u003c/a\u003e fix(deps): bump brace-expansion from 5.0.4 to 5.0.5 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/787\"\u003e#787\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b811104f3055861eb15da872b8815fd743ceace9\"\u003e\u003ccode\u003eb811104\u003c/code\u003e\u003c/a\u003e build(deps): bump astro from 5.16.11 to 5.18.1 in /docs (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/785\"\u003e#785\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/a3ad8d359bd980a9618ba505031407bb98ba9af2\"\u003e\u003ccode\u003ea3ad8d3\u003c/code\u003e\u003c/a\u003e fix(changelog): preserve HTML blocks in custom changelog entry sections (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/786\"\u003e#786\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d80bdf5838fc61ebf98313f6a20f698b5700a4cd\"\u003e\u003ccode\u003ed80bdf5\u003c/code\u003e\u003c/a\u003e fix: upgrade GitHub Actions to Node.js 24 compatible versions (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/784\"\u003e#784\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/390ea43f4f980826b8b4d69a70e43dbcb4bf6401\"\u003e\u003ccode\u003e390ea43\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/724f9ff5547e18da11439853a05210f15c9540e7\"\u003e\u003ccode\u003e724f9ff\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.25.1'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/14aca37e23aa6d8239a4013cae86d3bae4b4e0cd\"\u003e\u003ccode\u003e14aca37\u003c/code\u003e\u003c/a\u003e release: 2.25.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7223a48b850b70701693c40177eb96ad0649a6a4\"\u003e\u003ccode\u003e7223a48\u003c/code\u003e\u003c/a\u003e fix(deps): address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/783\"\u003e#783\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/63ed0bf871983d6b02a9d10d9d8f1ddb9105b332\"\u003e\u003ccode\u003e63ed0bf\u003c/code\u003e\u003c/a\u003e chore: reformat codebase with Prettier and add CI enforcement (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/782\"\u003e#782\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/f4889d04564e47311038ecb6b910fef6b6cf1363...ba01e596c4a4c07692f0de10b0d4fe05f3dd0292\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.25.0\u0026new-version=2.25.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-cocoa/pull/7748","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-cocoa/issues/7748","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/7748/packages"},{"uuid":"4124043513","node_id":"PR_kwDOADGDg87M04Ma","number":2035,"state":"closed","title":"chore(deps): bump getsentry/craft from 2.24.2 to 2.25.0","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-03-30T22:49:13.000Z","author_association":null,"state_reason":null,"created_at":"2026-03-23T22:22:45.000Z","updated_at":"2026-03-30T22:49:15.000Z","time_to_close":606388,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"getsentry/craft","old_version":"2.24.2","new_version":"2.25.0","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.24.2 to 2.25.0.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.25.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(registry) Require and validate registry metadata on first publish by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/777\"\u003e#777\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for fast-xml-parser, h3, and flatted by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/780\"\u003e#780\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Make post-publish merge failure non-fatal with resolve strategy retry by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/778\"\u003e#778\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.8 to 5.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/779\"\u003e#779\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.25.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(registry) Require and validate registry metadata on first publish by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/777\"\u003e#777\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for fast-xml-parser, h3, and flatted by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/780\"\u003e#780\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Make post-publish merge failure non-fatal with resolve strategy retry by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/778\"\u003e#778\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.8 to 5.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/779\"\u003e#779\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for flatted and devalue by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/775\"\u003e#775\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(prepare) Handle scoped tag prefixes in auto version resolution by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/773\"\u003e#773\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate CI actions from Node.js 20 SHA pins to latest by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/774\"\u003e#774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix fenced code blocks being silently dropped from custom changelog entries in PR descriptions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/771\"\u003e#771\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate simple-git and tar to address security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/772\"\u003e#772\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003esdkName\u003c/code\u003e option and symlink creation for SDK packages in registry by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/769\"\u003e#769\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump tar from 7.5.8 to 7.5.10 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/768\"\u003e#768\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/f4889d04564e47311038ecb6b910fef6b6cf1363\"\u003e\u003ccode\u003ef4889d0\u003c/code\u003e\u003c/a\u003e release: 2.25.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ce1233d436f697c99a05cec0db32e53fbad378a1\"\u003e\u003ccode\u003ece1233d\u003c/code\u003e\u003c/a\u003e feat(registry): Require and validate registry metadata on first publish (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/777\"\u003e#777\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/8cddf82427edf7be04802a428aabfd82d04873e1\"\u003e\u003ccode\u003e8cddf82\u003c/code\u003e\u003c/a\u003e fix(deps): address security advisories for fast-xml-parser, h3, and flatted (...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/c22127168665d4e34d230193c5aef314b70bfe35\"\u003e\u003ccode\u003ec221271\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump fast-xml-parser from 5.3.8 to 5.5.7 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/779\"\u003e#779\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/352ba0c48c27196f4b2a001c215bbd245ba0be2f\"\u003e\u003ccode\u003e352ba0c\u003c/code\u003e\u003c/a\u003e fix(publish): make post-publish merge failure non-fatal with resolve strategy...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/dcc2acdee6c520a42f08fec9ebad505c4a7476ac\"\u003e\u003ccode\u003edcc2acd\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/2f57337363f65f02439917b6ece931d3e461ab47\"\u003e\u003ccode\u003e2f57337\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.24.2'\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/getsentry/craft/compare/78da70b88de5cf6245d5d7e3263a9e8952667dec...f4889d04564e47311038ecb6b910fef6b6cf1363\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.24.2\u0026new-version=2.25.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-php/pull/2035","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-php/issues/2035","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2035/packages"},{"uuid":"4091210455","node_id":"PR_kwDORdMCOc7LWpo8","number":14,"state":"closed","title":"Bump getsentry/craft from 2.20.1 to 2.24.2","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":"2026-03-24T21:07:52.000Z","author_association":null,"state_reason":null,"created_at":"2026-03-17T21:08:06.000Z","updated_at":"2026-03-24T21:07:54.000Z","time_to_close":604786,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"getsentry/craft","old_version":"2.20.1","new_version":"2.24.2","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.20.1 to 2.24.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.24.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for flatted and devalue by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/775\"\u003e#775\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(prepare) Handle scoped tag prefixes in auto version resolution by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/773\"\u003e#773\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate CI actions from Node.js 20 SHA pins to latest by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/774\"\u003e#774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix fenced code blocks being silently dropped from custom changelog entries in PR descriptions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/771\"\u003e#771\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate simple-git and tar to address security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/772\"\u003e#772\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003esdkName\u003c/code\u003e option and symlink creation for SDK packages in registry by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/769\"\u003e#769\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump tar from 7.5.8 to 7.5.10 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/768\"\u003e#768\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eClarify urlTemplate usage and repo_url derivation for registry target by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/766\"\u003e#766\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.24.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for flatted and devalue by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/775\"\u003e#775\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(prepare) Handle scoped tag prefixes in auto version resolution by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/773\"\u003e#773\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate CI actions from Node.js 20 SHA pins to latest by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/774\"\u003e#774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix fenced code blocks being silently dropped from custom changelog entries in PR descriptions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/771\"\u003e#771\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate simple-git and tar to address security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/772\"\u003e#772\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003esdkName\u003c/code\u003e option and symlink creation for SDK packages in registry by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/769\"\u003e#769\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump tar from 7.5.8 to 7.5.10 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/768\"\u003e#768\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eClarify urlTemplate usage and repo_url derivation for registry target by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/766\"\u003e#766\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/78da70b88de5cf6245d5d7e3263a9e8952667dec\"\u003e\u003ccode\u003e78da70b\u003c/code\u003e\u003c/a\u003e release: 2.24.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d9b2273e926ced09c231a9f8d1446611775847f4\"\u003e\u003ccode\u003ed9b2273\u003c/code\u003e\u003c/a\u003e fix(deps): address security advisories for flatted and devalue (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/775\"\u003e#775\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/178f11c4f502652f1589583098de61612cc0fc76\"\u003e\u003ccode\u003e178f11c\u003c/code\u003e\u003c/a\u003e chore: update CI actions from Node.js 20 SHA pins to latest (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/774\"\u003e#774\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/dc4bdfa2d2b8b4256ae44df30de68dd126306b36\"\u003e\u003ccode\u003edc4bdfa\u003c/code\u003e\u003c/a\u003e fix(prepare): handle scoped tag prefixes in auto version resolution (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/773\"\u003e#773\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/4de3f409db820787287ba038d99cb96cf008f022\"\u003e\u003ccode\u003e4de3f40\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/90457fdbd10085778513fc985a389701a2026fb2\"\u003e\u003ccode\u003e90457fd\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.24.1'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/013a7b2113c2cac0ff32d5180cfeaefc7c9ce5b6\"\u003e\u003ccode\u003e013a7b2\u003c/code\u003e\u003c/a\u003e release: 2.24.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/68bff822d4bc5f2cbd0478394be75bcd008c6359\"\u003e\u003ccode\u003e68bff82\u003c/code\u003e\u003c/a\u003e fix(changelog): preserve fenced code blocks in custom PR changelog entries (#...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/0a245240e2073062f21284a330106fc70712e9cc\"\u003e\u003ccode\u003e0a24524\u003c/code\u003e\u003c/a\u003e fix: update simple-git and tar to address security vulnerabilities (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/772\"\u003e#772\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/cea6ee8a44e98444c851a3c2ea41186d90af871b\"\u003e\u003ccode\u003ecea6ee8\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/beea4aba589c66381258cbd131c5551ae8245b82...78da70b88de5cf6245d5d7e3263a9e8952667dec\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.20.1\u0026new-version=2.24.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/ghcpd/v-ShuLiu_26_03_03_case1/pull/14","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghcpd%2Fv-ShuLiu_26_03_03_case1/issues/14","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/14/packages"},{"uuid":"4080124014","node_id":"PR_kwDOADNk_s7KzVlW","number":5197,"state":"open","title":"build(deps): bump getsentry/craft from 2.23.1 to 2.24.1","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-03-16T04:18:45.000Z","updated_at":"2026-03-16T04:19:08.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.23.1","new_version":"2.24.1","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.23.1 to 2.24.1.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.24.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix fenced code blocks being silently dropped from custom changelog entries in PR descriptions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/771\"\u003e#771\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate simple-git and tar to address security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/772\"\u003e#772\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003esdkName\u003c/code\u003e option and symlink creation for SDK packages in registry by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/769\"\u003e#769\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump tar from 7.5.8 to 7.5.10 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/768\"\u003e#768\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eClarify urlTemplate usage and repo_url derivation for registry target by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/766\"\u003e#766\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.24.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix fenced code blocks being silently dropped from custom changelog entries in PR descriptions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/771\"\u003e#771\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate simple-git and tar to address security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/772\"\u003e#772\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003esdkName\u003c/code\u003e option and symlink creation for SDK packages in registry by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/769\"\u003e#769\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump tar from 7.5.8 to 7.5.10 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/768\"\u003e#768\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eClarify urlTemplate usage and repo_url derivation for registry target by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/766\"\u003e#766\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(actions) Support \u003ccode\u003epublish_repo: self\u003c/code\u003e for single-repo setups by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/760\"\u003e#760\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/013a7b2113c2cac0ff32d5180cfeaefc7c9ce5b6\"\u003e\u003ccode\u003e013a7b2\u003c/code\u003e\u003c/a\u003e release: 2.24.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/68bff822d4bc5f2cbd0478394be75bcd008c6359\"\u003e\u003ccode\u003e68bff82\u003c/code\u003e\u003c/a\u003e fix(changelog): preserve fenced code blocks in custom PR changelog entries (#...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/0a245240e2073062f21284a330106fc70712e9cc\"\u003e\u003ccode\u003e0a24524\u003c/code\u003e\u003c/a\u003e fix: update simple-git and tar to address security vulnerabilities (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/772\"\u003e#772\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/cea6ee8a44e98444c851a3c2ea41186d90af871b\"\u003e\u003ccode\u003ecea6ee8\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1f5e6bbec14f28516e0a8b4cc169863cbd98d911\"\u003e\u003ccode\u003e1f5e6bb\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.24.0'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/41c598a46bba929ea51a3923e1117a4a13b619a2\"\u003e\u003ccode\u003e41c598a\u003c/code\u003e\u003c/a\u003e release: 2.24.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/46e66480ce1fc971f159b3592b4abb9679991ad0\"\u003e\u003ccode\u003e46e6648\u003c/code\u003e\u003c/a\u003e feat: Add \u003ccode\u003esdkName\u003c/code\u003e option and symlink creation for SDK packages in registry ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/05e58744df38569b0a8ddfb02657a3e6379ac13f\"\u003e\u003ccode\u003e05e5874\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump tar from 7.5.8 to 7.5.10 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/768\"\u003e#768\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/29d91c10992868320a8ca3393b53f10ffb8c91e9\"\u003e\u003ccode\u003e29d91c1\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d9b156c6cb4d0f4a150a435b43286ad7fc13394c\"\u003e\u003ccode\u003ed9b156c\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.23.2'\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/d4cfac9d25d1fc72c9241e5d22aff559a114e4e9...013a7b2113c2cac0ff32d5180cfeaefc7c9ce5b6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.23.1\u0026new-version=2.24.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-java/pull/5197","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-java/issues/5197","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5197/packages"},{"uuid":"4044138876","node_id":"PR_kwDOB_MgjM7I_4KU","number":4989,"state":"open","title":"build(deps): bump getsentry/craft from 2.23.1 to 2.23.2","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-03-09T08:27:35.000Z","updated_at":"2026-03-09T08:28:04.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.23.1","new_version":"2.23.2","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.23.1 to 2.23.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eClarify urlTemplate usage and repo_url derivation for registry target by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/766\"\u003e#766\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eClarify urlTemplate usage and repo_url derivation for registry target by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/766\"\u003e#766\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(actions) Support \u003ccode\u003epublish_repo: self\u003c/code\u003e for single-repo setups by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/760\"\u003e#760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Add test/tests/style to default internal changes categories by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/759\"\u003e#759\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address Dependabot security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/761\"\u003e#761\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.7\u003c/h2\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 5.3.4 to 5.3.6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/757\"\u003e#757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.7 to 7.5.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/758\"\u003e#758\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d630201930c7fe5aee6366ebee19ebb681128512\"\u003e\u003ccode\u003ed630201\u003c/code\u003e\u003c/a\u003e release: 2.23.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/c98487330b52e1535b4786fb0574249603f01265\"\u003e\u003ccode\u003ec984873\u003c/code\u003e\u003c/a\u003e fix: resolve 4 open Dependabot security alerts via pnpm overrides (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/767\"\u003e#767\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d28006e204d984893ecc47e5b874e685ea255137\"\u003e\u003ccode\u003ed28006e\u003c/code\u003e\u003c/a\u003e docs: clarify urlTemplate usage and repo_url derivation for registry target (...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/227dd56aeb924bcfc63345df81961823d27c52e5\"\u003e\u003ccode\u003e227dd56\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/a3de9084cc97778d161fac3bef44583afa1f5545\"\u003e\u003ccode\u003ea3de908\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.23.1'\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/getsentry/craft/compare/d4cfac9d25d1fc72c9241e5d22aff559a114e4e9...d630201930c7fe5aee6366ebee19ebb681128512\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.23.1\u0026new-version=2.23.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-dotnet/pull/4989","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-dotnet/issues/4989","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4989/packages"},{"uuid":"4010465025","node_id":"PR_kwDOAxKOj87HSjGF","number":4195,"state":"open","title":"build(deps): bump getsentry/craft from 2.21.7 to 2.23.1","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-03-02T10:24:30.000Z","updated_at":"2026-03-02T10:24:49.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.21.7","new_version":"2.23.1","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.21.7 to 2.23.1.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(actions) Support \u003ccode\u003epublish_repo: self\u003c/code\u003e for single-repo setups by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/760\"\u003e#760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Add test/tests/style to default internal changes categories by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/759\"\u003e#759\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address Dependabot security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/761\"\u003e#761\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(actions) Support \u003ccode\u003epublish_repo: self\u003c/code\u003e for single-repo setups by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/760\"\u003e#760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Add test/tests/style to default internal changes categories by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/759\"\u003e#759\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address Dependabot security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/761\"\u003e#761\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.7\u003c/h2\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 5.3.4 to 5.3.6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/757\"\u003e#757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.7 to 7.5.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/758\"\u003e#758\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d4cfac9d25d1fc72c9241e5d22aff559a114e4e9\"\u003e\u003ccode\u003ed4cfac9\u003c/code\u003e\u003c/a\u003e release: 2.23.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/75808087ebb9295ffab8f888c9672e2698c6271d\"\u003e\u003ccode\u003e7580808\u003c/code\u003e\u003c/a\u003e fix(changelog): categorize direct commits (no PR) by commit_patterns (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/764\"\u003e#764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6aacbec1fa2e481130c89c11e271a59826ce9e0a\"\u003e\u003ccode\u003e6aacbec\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump fast-xml-parser from 5.3.6 to 5.3.8 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/762\"\u003e#762\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/412533a7e46d13f8aa08337627dd86ced1bb0792\"\u003e\u003ccode\u003e412533a\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6d625a1ede980dd4f71725afae00ae23703e1b39\"\u003e\u003ccode\u003e6d625a1\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.23.0'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ce288193e2ac7976b0ffd1d5733527605e6fd63b\"\u003e\u003ccode\u003ece28819\u003c/code\u003e\u003c/a\u003e release: 2.23.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b02365c5290f5c49067e336fe207afd5cea4ce8f\"\u003e\u003ccode\u003eb02365c\u003c/code\u003e\u003c/a\u003e feat(npm): support OIDC trusted publishing (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/763\"\u003e#763\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/475342d98b397399d0cd4cfc3583179ff7139b9c\"\u003e\u003ccode\u003e475342d\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/30f43a853968f2c38043d55146fc79d14ee7355b\"\u003e\u003ccode\u003e30f43a8\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.22.0'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1db39410d293a253e6affbe98c8c6f29db6e218d\"\u003e\u003ccode\u003e1db3941\u003c/code\u003e\u003c/a\u003e release: 2.22.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/41defb379de52e5f0e3943944fa5575b22fb9f92...d4cfac9d25d1fc72c9241e5d22aff559a114e4e9\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.21.7\u0026new-version=2.23.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/self-hosted/pull/4195","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fself-hosted/issues/4195","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4195/packages"},{"uuid":"4009120269","node_id":"PR_kwDOCDbi-87HOOdR","number":5570,"state":"open","title":"build(deps): bump getsentry/craft from 2.20.1 to 2.23.1","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-03-02T03:52:55.000Z","updated_at":"2026-03-02T03:58:12.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.20.1","new_version":"2.23.1","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.20.1 to 2.23.1.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(actions) Support \u003ccode\u003epublish_repo: self\u003c/code\u003e for single-repo setups by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/760\"\u003e#760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Add test/tests/style to default internal changes categories by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/759\"\u003e#759\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address Dependabot security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/761\"\u003e#761\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.7\u003c/h2\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 5.3.4 to 5.3.6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/757\"\u003e#757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.7 to 7.5.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/758\"\u003e#758\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(actions) Support \u003ccode\u003epublish_repo: self\u003c/code\u003e for single-repo setups by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/760\"\u003e#760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Add test/tests/style to default internal changes categories by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/759\"\u003e#759\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address Dependabot security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/761\"\u003e#761\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.7\u003c/h2\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 5.3.4 to 5.3.6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/757\"\u003e#757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.7 to 7.5.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/758\"\u003e#758\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d4cfac9d25d1fc72c9241e5d22aff559a114e4e9\"\u003e\u003ccode\u003ed4cfac9\u003c/code\u003e\u003c/a\u003e release: 2.23.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/75808087ebb9295ffab8f888c9672e2698c6271d\"\u003e\u003ccode\u003e7580808\u003c/code\u003e\u003c/a\u003e fix(changelog): categorize direct commits (no PR) by commit_patterns (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/764\"\u003e#764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6aacbec1fa2e481130c89c11e271a59826ce9e0a\"\u003e\u003ccode\u003e6aacbec\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump fast-xml-parser from 5.3.6 to 5.3.8 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/762\"\u003e#762\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/412533a7e46d13f8aa08337627dd86ced1bb0792\"\u003e\u003ccode\u003e412533a\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6d625a1ede980dd4f71725afae00ae23703e1b39\"\u003e\u003ccode\u003e6d625a1\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.23.0'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ce288193e2ac7976b0ffd1d5733527605e6fd63b\"\u003e\u003ccode\u003ece28819\u003c/code\u003e\u003c/a\u003e release: 2.23.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b02365c5290f5c49067e336fe207afd5cea4ce8f\"\u003e\u003ccode\u003eb02365c\u003c/code\u003e\u003c/a\u003e feat(npm): support OIDC trusted publishing (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/763\"\u003e#763\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/475342d98b397399d0cd4cfc3583179ff7139b9c\"\u003e\u003ccode\u003e475342d\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/30f43a853968f2c38043d55146fc79d14ee7355b\"\u003e\u003ccode\u003e30f43a8\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.22.0'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1db39410d293a253e6affbe98c8c6f29db6e218d\"\u003e\u003ccode\u003e1db3941\u003c/code\u003e\u003c/a\u003e release: 2.22.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/beea4aba589c66381258cbd131c5551ae8245b82...d4cfac9d25d1fc72c9241e5d22aff559a114e4e9\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.20.1\u0026new-version=2.23.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-python/pull/5570","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-python/issues/5570","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5570/packages"},{"uuid":"3976180353","node_id":"PR_kwDOCDbi-87Fi4Rq","number":5501,"state":"open","title":"build(deps): bump getsentry/craft from 2.20.1 to 2.21.7","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-02-23T03:52:57.000Z","updated_at":"2026-02-23T03:59:13.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.20.1","new_version":"2.21.7","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.20.1 to 2.21.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.7\u003c/h2\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 5.3.4 to 5.3.6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/757\"\u003e#757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.7 to 7.5.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/758\"\u003e#758\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.7\u003c/h2\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 5.3.4 to 5.3.6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/757\"\u003e#757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.7 to 7.5.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/758\"\u003e#758\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/41defb379de52e5f0e3943944fa5575b22fb9f92\"\u003e\u003ccode\u003e41defb3\u003c/code\u003e\u003c/a\u003e release: 2.21.7\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/20c884cd0771baa2603c9a83f3ff735294d98562\"\u003e\u003ccode\u003e20c884c\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump fast-xml-parser from 5.3.4 to 5.3.6 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/757\"\u003e#757\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/cdcd94a28a05db8c22a8fc5b5ea0002b66f62643\"\u003e\u003ccode\u003ecdcd94a\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump tar from 7.5.7 to 7.5.8 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/758\"\u003e#758\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/adb112b2d22ff271adb617d72246ee2f1330d881\"\u003e\u003ccode\u003eadb112b\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/21d7f6219b3aff70d29c2d518ab930efeb0cadea\"\u003e\u003ccode\u003e21d7f62\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.6'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ba4115c4f37e5e82d57e7a59256568d0418ac725\"\u003e\u003ccode\u003eba4115c\u003c/code\u003e\u003c/a\u003e release: 2.21.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/46863f8db4c20fb5816d4b8bb9c2fc89e29ecfc0\"\u003e\u003ccode\u003e46863f8\u003c/code\u003e\u003c/a\u003e fix(ux): show failed check details on status provider failures (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/756\"\u003e#756\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1afb9c36099c36ea16cdcf62005083ce7bdfc798\"\u003e\u003ccode\u003e1afb9c3\u003c/code\u003e\u003c/a\u003e fix(changelog): disable @-mention pings in publish issues for calver releases...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/9a7d6e5f2d7e1d3c4b5945885085c53bafce6df4\"\u003e\u003ccode\u003e9a7d6e5\u003c/code\u003e\u003c/a\u003e fix(github): truncate release body exceeding GitHub 125k char limit (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/754\"\u003e#754\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/184de93c8194bd0926b5be49e97c725f24aec15e\"\u003e\u003ccode\u003e184de93\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/beea4aba589c66381258cbd131c5551ae8245b82...41defb379de52e5f0e3943944fa5575b22fb9f92\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.20.1\u0026new-version=2.21.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-python/pull/5501","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-python/issues/5501","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5501/packages"},{"uuid":"3957145943","node_id":"PR_kwDODl-XBs7ElUbo","number":1081,"state":"closed","title":"build(deps): bump getsentry/craft from 2.21.4 to 2.21.6","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":"2026-02-23T11:27:41.000Z","author_association":null,"state_reason":null,"created_at":"2026-02-18T10:35:14.000Z","updated_at":"2026-02-23T11:27:43.000Z","time_to_close":435147,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.21.4","new_version":"2.21.6","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.21.4 to 2.21.6.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ba4115c4f37e5e82d57e7a59256568d0418ac725\"\u003e\u003ccode\u003eba4115c\u003c/code\u003e\u003c/a\u003e release: 2.21.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/46863f8db4c20fb5816d4b8bb9c2fc89e29ecfc0\"\u003e\u003ccode\u003e46863f8\u003c/code\u003e\u003c/a\u003e fix(ux): show failed check details on status provider failures (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/756\"\u003e#756\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1afb9c36099c36ea16cdcf62005083ce7bdfc798\"\u003e\u003ccode\u003e1afb9c3\u003c/code\u003e\u003c/a\u003e fix(changelog): disable @-mention pings in publish issues for calver releases...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/9a7d6e5f2d7e1d3c4b5945885085c53bafce6df4\"\u003e\u003ccode\u003e9a7d6e5\u003c/code\u003e\u003c/a\u003e fix(github): truncate release body exceeding GitHub 125k char limit (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/754\"\u003e#754\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/184de93c8194bd0926b5be49e97c725f24aec15e\"\u003e\u003ccode\u003e184de93\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/0ea4cdc73e4578a25216b33074e8cd32508ecbdb\"\u003e\u003ccode\u003e0ea4cdc\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.5'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5cabbe7d6ae3730788393284d5071969d9309753\"\u003e\u003ccode\u003e5cabbe7\u003c/code\u003e\u003c/a\u003e release: 2.21.5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/8f492eb05ce160e5516d1c524e23026f59659cac\"\u003e\u003ccode\u003e8f492eb\u003c/code\u003e\u003c/a\u003e fix(action): write changelog to file to avoid E2BIG on large repos (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/753\"\u003e#753\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7e5a72131c3dcc83b367959ca139facb4ea4333d\"\u003e\u003ccode\u003e7e5a721\u003c/code\u003e\u003c/a\u003e fix(gh-pages): add CNAME file to preserve custom domain on deploy (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/751\"\u003e#751\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/186d135de614bd8e4e415aa8861121e015d0c6ba\"\u003e\u003ccode\u003e186d135\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/906009a1b771956757e521555b561379307eb667...ba4115c4f37e5e82d57e7a59256568d0418ac725\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.21.4\u0026new-version=2.21.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-android-gradle-plugin/pull/1081","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-android-gradle-plugin/issues/1081","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1081/packages"},{"uuid":"3952049300","node_id":"PR_kwDOA5Fy-s7EUkz8","number":418,"state":"open","title":"build(deps): bump getsentry/craft from 2.21.2 to 2.21.5","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-02-17T10:32:59.000Z","updated_at":"2026-02-17T10:34:27.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.21.2","new_version":"2.21.5","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.21.2 to 2.21.5.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5cabbe7d6ae3730788393284d5071969d9309753\"\u003e\u003ccode\u003e5cabbe7\u003c/code\u003e\u003c/a\u003e release: 2.21.5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/8f492eb05ce160e5516d1c524e23026f59659cac\"\u003e\u003ccode\u003e8f492eb\u003c/code\u003e\u003c/a\u003e fix(action): write changelog to file to avoid E2BIG on large repos (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/753\"\u003e#753\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7e5a72131c3dcc83b367959ca139facb4ea4333d\"\u003e\u003ccode\u003e7e5a721\u003c/code\u003e\u003c/a\u003e fix(gh-pages): add CNAME file to preserve custom domain on deploy (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/751\"\u003e#751\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/186d135de614bd8e4e415aa8861121e015d0c6ba\"\u003e\u003ccode\u003e186d135\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5bd6b521e396e4c2fed3e94b986068bf975235e0\"\u003e\u003ccode\u003e5bd6b52\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.4'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/906009a1b771956757e521555b561379307eb667\"\u003e\u003ccode\u003e906009a\u003c/code\u003e\u003c/a\u003e release: 2.21.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/84cdfd99cf763cc010db4cfc0c97544bdd2c607c\"\u003e\u003ccode\u003e84cdfd9\u003c/code\u003e\u003c/a\u003e fix(ux): improve error messages for artifact mismatches and missing release b...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/91e1029e0095fdf9575a0c7f026cf9ce13e0a0ec\"\u003e\u003ccode\u003e91e1029\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b978526aa913c47c8b6b1bef62fe8f114dd9b477\"\u003e\u003ccode\u003eb978526\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.3'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5d154a7facb096e38889be2c6caf2fd23649aa92\"\u003e\u003ccode\u003e5d154a7\u003c/code\u003e\u003c/a\u003e release: 2.21.3\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/63d1636bead951f6e034ed62c2a3610965fef010...5cabbe7d6ae3730788393284d5071969d9309753\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.21.2\u0026new-version=2.21.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-fastlane-plugin/pull/418","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-fastlane-plugin/issues/418","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/418/packages"},{"uuid":"3945801076","node_id":"PR_kwDOADNk_s7D_3i4","number":5101,"state":"closed","title":"build(deps): bump getsentry/craft from 2.21.2 to 2.21.4","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-02-23T04:27:09.000Z","author_association":null,"state_reason":null,"created_at":"2026-02-16T04:22:48.000Z","updated_at":"2026-02-23T04:27:11.000Z","time_to_close":605061,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.21.2","new_version":"2.21.4","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.21.2 to 2.21.4.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 4.5.3 to 5.3.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/737\"\u003e#737\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.4 to 7.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/736\"\u003e#736\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/906009a1b771956757e521555b561379307eb667\"\u003e\u003ccode\u003e906009a\u003c/code\u003e\u003c/a\u003e release: 2.21.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/84cdfd99cf763cc010db4cfc0c97544bdd2c607c\"\u003e\u003ccode\u003e84cdfd9\u003c/code\u003e\u003c/a\u003e fix(ux): improve error messages for artifact mismatches and missing release b...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/91e1029e0095fdf9575a0c7f026cf9ce13e0a0ec\"\u003e\u003ccode\u003e91e1029\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b978526aa913c47c8b6b1bef62fe8f114dd9b477\"\u003e\u003ccode\u003eb978526\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.3'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5d154a7facb096e38889be2c6caf2fd23649aa92\"\u003e\u003ccode\u003e5d154a7\u003c/code\u003e\u003c/a\u003e release: 2.21.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7f895c51dd1b4f6f35ea06f3dedaeab277d2eb93\"\u003e\u003ccode\u003e7f895c5\u003c/code\u003e\u003c/a\u003e fix(changelog): Tailor preview output to versioning policy (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/749\"\u003e#749\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e\u003ccode\u003e1aa1e5c\u003c/code\u003e\u003c/a\u003e fix: Retract is no more\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5c870b0409447537c106b3931bee4a8770fe6e88\"\u003e\u003ccode\u003e5c870b0\u003c/code\u003e\u003c/a\u003e fix(artifacts): Support glob patterns and validate all configured patterns ma...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3edce69fda2e1fd8e95f1c5dec8385b141b1f9e6\"\u003e\u003ccode\u003e3edce69\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/03f8c7439db7b7c1414217581e3df650602f66f5\"\u003e\u003ccode\u003e03f8c74\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.2'\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/getsentry/craft/compare/63d1636bead951f6e034ed62c2a3610965fef010...906009a1b771956757e521555b561379307eb667\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.21.2\u0026new-version=2.21.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-java/pull/5101","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-java/issues/5101","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5101/packages"},{"uuid":"3945734438","node_id":"PR_kwDOCDbi-87D_pjU","number":5467,"state":"closed","title":"build(deps): bump getsentry/craft from 2.20.1 to 2.21.4","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":"2026-02-23T03:53:00.000Z","author_association":null,"state_reason":null,"created_at":"2026-02-16T03:52:57.000Z","updated_at":"2026-02-23T03:53:00.000Z","time_to_close":604803,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.20.1","new_version":"2.21.4","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.20.1 to 2.21.4.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 4.5.3 to 5.3.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/737\"\u003e#737\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.4 to 7.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/736\"\u003e#736\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eOther\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eUse correct artifact name for dogfooding by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/742\"\u003e#742\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 4.5.3 to 5.3.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/737\"\u003e#737\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.4 to 7.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/736\"\u003e#736\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/906009a1b771956757e521555b561379307eb667\"\u003e\u003ccode\u003e906009a\u003c/code\u003e\u003c/a\u003e release: 2.21.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/84cdfd99cf763cc010db4cfc0c97544bdd2c607c\"\u003e\u003ccode\u003e84cdfd9\u003c/code\u003e\u003c/a\u003e fix(ux): improve error messages for artifact mismatches and missing release b...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/91e1029e0095fdf9575a0c7f026cf9ce13e0a0ec\"\u003e\u003ccode\u003e91e1029\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b978526aa913c47c8b6b1bef62fe8f114dd9b477\"\u003e\u003ccode\u003eb978526\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.3'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5d154a7facb096e38889be2c6caf2fd23649aa92\"\u003e\u003ccode\u003e5d154a7\u003c/code\u003e\u003c/a\u003e release: 2.21.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7f895c51dd1b4f6f35ea06f3dedaeab277d2eb93\"\u003e\u003ccode\u003e7f895c5\u003c/code\u003e\u003c/a\u003e fix(changelog): Tailor preview output to versioning policy (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/749\"\u003e#749\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e\u003ccode\u003e1aa1e5c\u003c/code\u003e\u003c/a\u003e fix: Retract is no more\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5c870b0409447537c106b3931bee4a8770fe6e88\"\u003e\u003ccode\u003e5c870b0\u003c/code\u003e\u003c/a\u003e fix(artifacts): Support glob patterns and validate all configured patterns ma...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3edce69fda2e1fd8e95f1c5dec8385b141b1f9e6\"\u003e\u003ccode\u003e3edce69\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/03f8c7439db7b7c1414217581e3df650602f66f5\"\u003e\u003ccode\u003e03f8c74\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.2'\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/beea4aba589c66381258cbd131c5551ae8245b82...906009a1b771956757e521555b561379307eb667\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.20.1\u0026new-version=2.21.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-python/pull/5467","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-python/issues/5467","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5467/packages"},{"uuid":"3936501217","node_id":"PR_kwDODl-XBs7DhYkL","number":1072,"state":"open","title":"build(deps): bump getsentry/craft from 2.21.2 to 2.21.4","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-02-13T10:34:37.000Z","updated_at":"2026-02-13T10:34:55.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.21.2","new_version":"2.21.4","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.21.2 to 2.21.4.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 4.5.3 to 5.3.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/737\"\u003e#737\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.4 to 7.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/736\"\u003e#736\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/906009a1b771956757e521555b561379307eb667\"\u003e\u003ccode\u003e906009a\u003c/code\u003e\u003c/a\u003e release: 2.21.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/84cdfd99cf763cc010db4cfc0c97544bdd2c607c\"\u003e\u003ccode\u003e84cdfd9\u003c/code\u003e\u003c/a\u003e fix(ux): improve error messages for artifact mismatches and missing release b...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/91e1029e0095fdf9575a0c7f026cf9ce13e0a0ec\"\u003e\u003ccode\u003e91e1029\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b978526aa913c47c8b6b1bef62fe8f114dd9b477\"\u003e\u003ccode\u003eb978526\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.3'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5d154a7facb096e38889be2c6caf2fd23649aa92\"\u003e\u003ccode\u003e5d154a7\u003c/code\u003e\u003c/a\u003e release: 2.21.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7f895c51dd1b4f6f35ea06f3dedaeab277d2eb93\"\u003e\u003ccode\u003e7f895c5\u003c/code\u003e\u003c/a\u003e fix(changelog): Tailor preview output to versioning policy (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/749\"\u003e#749\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e\u003ccode\u003e1aa1e5c\u003c/code\u003e\u003c/a\u003e fix: Retract is no more\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5c870b0409447537c106b3931bee4a8770fe6e88\"\u003e\u003ccode\u003e5c870b0\u003c/code\u003e\u003c/a\u003e fix(artifacts): Support glob patterns and validate all configured patterns ma...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3edce69fda2e1fd8e95f1c5dec8385b141b1f9e6\"\u003e\u003ccode\u003e3edce69\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/03f8c7439db7b7c1414217581e3df650602f66f5\"\u003e\u003ccode\u003e03f8c74\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.2'\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/getsentry/craft/compare/63d1636bead951f6e034ed62c2a3610965fef010...906009a1b771956757e521555b561379307eb667\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.21.2\u0026new-version=2.21.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-android-gradle-plugin/pull/1072","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-android-gradle-plugin/issues/1072","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1072/packages"},{"uuid":"3915975115","node_id":"PR_kwDODl-XBs7CdiEQ","number":1067,"state":"open","title":"build(deps): bump getsentry/craft from 2.20.1 to 2.21.2","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-02-09T11:46:08.000Z","updated_at":"2026-02-09T11:46:31.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.20.1","new_version":"2.21.2","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.20.1 to 2.21.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 4.5.3 to 5.3.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/737\"\u003e#737\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.4 to 7.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/736\"\u003e#736\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eOther\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eUse correct artifact name for dogfooding by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/742\"\u003e#742\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRevert legacy artifact naming for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/745\"\u003e#745\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 4.5.3 to 5.3.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/737\"\u003e#737\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.4 to 7.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/736\"\u003e#736\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eOther\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eUse correct artifact name for dogfooding by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/742\"\u003e#742\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRevert legacy artifact naming for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/745\"\u003e#745\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.20.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Expand changelog by default in publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/731\"\u003e#731\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/63d1636bead951f6e034ed62c2a3610965fef010\"\u003e\u003ccode\u003e63d1636\u003c/code\u003e\u003c/a\u003e release: 2.21.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/4760b720ba5a642fbf94ce37e6eee4b020029db4\"\u003e\u003ccode\u003e4760b72\u003c/code\u003e\u003c/a\u003e ci: Add TypeScript type checking to CI (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/747\"\u003e#747\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6816252bdbda12c998560ddb100c80b2c462b804\"\u003e\u003ccode\u003e6816252\u003c/code\u003e\u003c/a\u003e fix(targets): Add missing spawnProcess imports in pypi and crates (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/746\"\u003e#746\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/bd0aa29cff82088e698c5ec8a2ae41c9e6fe73bd\"\u003e\u003ccode\u003ebd0aa29\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/9bea1bf9aaf5c814af9db72142e9c2f8510ccd16\"\u003e\u003ccode\u003e9bea1bf\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.1'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/564d9f5a3186fd8685cc17e5fe9c6915531ff98d\"\u003e\u003ccode\u003e564d9f5\u003c/code\u003e\u003c/a\u003e release: 2.21.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/e2bed417223ab8073041c35b70d757c23f01602f\"\u003e\u003ccode\u003ee2bed41\u003c/code\u003e\u003c/a\u003e Revert legacy artifact naming for backward compatibility (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/745\"\u003e#745\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5037190184533ee93977c639e3a8b1d3531ed656\"\u003e\u003ccode\u003e5037190\u003c/code\u003e\u003c/a\u003e fix(action): Handle permission errors when updating publish issues (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/744\"\u003e#744\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/2bd5eb6e35e6cf22a74f6c868ae17a03b8d58f20\"\u003e\u003ccode\u003e2bd5eb6\u003c/code\u003e\u003c/a\u003e fix(build): Add legacy artifact name for backward compatibility (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/743\"\u003e#743\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/e9fd6aa2d383904b4332421b80a986e91e3917b6\"\u003e\u003ccode\u003ee9fd6aa\u003c/code\u003e\u003c/a\u003e ci: Use correct artifact name for dogfooding (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/742\"\u003e#742\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/beea4aba589c66381258cbd131c5551ae8245b82...63d1636bead951f6e034ed62c2a3610965fef010\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.20.1\u0026new-version=2.21.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-android-gradle-plugin/pull/1067","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-android-gradle-plugin/issues/1067","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1067/packages"}],"issue_packages":[{"old_version":"2.26.2","new_version":"2.26.6","update_type":"patch","path":null,"pr_created_at":"2026-06-02T21:32:16.000Z","version_change":"2.26.2 → 2.26.6","issue":{"uuid":"4575111706","node_id":"PR_kwDOADLKPM7h-fEh","number":21299,"state":"closed","title":"ci(deps): Bump getsentry/craft from 2.26.2 to 2.26.6","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-10T14:03:35.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-02T21:32:16.000Z","updated_at":"2026-06-10T14:03:37.000Z","time_to_close":664279,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"ci(deps): Bump","packages":[{"name":"getsentry/craft","old_version":"2.26.2","new_version":"2.26.6","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.26.2 to 2.26.6.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.26.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(nuget) Move global.json aside during \u003ccode\u003edotnet setversion\u003c/code\u003e by \u003ca href=\"https://github.com/jamescrosswell\"\u003e\u003ccode\u003e@​jamescrosswell\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/820\"\u003e#820\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Override \u003ccode\u003e@​tootallnate/once\u003c/code\u003e to ^2.0.1 (CVE-2026-3449) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/822\"\u003e#822\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove partial publishing recovery for CocoaPods and GitHub targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/821\"\u003e#821\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Bump devalue override to ^5.8.1 (CVE-2026-42570) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/818\"\u003e#818\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Prevent script injection in changelog-preview workflow by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/813\"\u003e#813\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eResolve open dependabot security alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/816\"\u003e#816\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump simple-git from 3.33.0 to 3.36.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/814\"\u003e#814\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePrevent shell injection vulnerabilities in GitHub Actions workflows by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/811\"\u003e#811\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.26.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(nuget) Move global.json aside during \u003ccode\u003edotnet setversion\u003c/code\u003e by \u003ca href=\"https://github.com/jamescrosswell\"\u003e\u003ccode\u003e@​jamescrosswell\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/820\"\u003e#820\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Override \u003ccode\u003e@​tootallnate/once\u003c/code\u003e to ^2.0.1 (CVE-2026-3449) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/822\"\u003e#822\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove partial publishing recovery for CocoaPods and GitHub targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/821\"\u003e#821\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Bump devalue override to ^5.8.1 (CVE-2026-42570) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/818\"\u003e#818\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Prevent script injection in changelog-preview workflow by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/813\"\u003e#813\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eResolve open dependabot security alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/816\"\u003e#816\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump simple-git from 3.33.0 to 3.36.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/814\"\u003e#814\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePrevent shell injection vulnerabilities in GitHub Actions workflows by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/811\"\u003e#811\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.2\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/810\"\u003e#810\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(prepare) Remove --allow-remote-config gate by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/809\"\u003e#809\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.18.1 to 6.1.6 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/806\"\u003e#806\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.5.7 to 5.7.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/808\"\u003e#808\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3e6a0f477702864bb5854384b390a0db3325428e\"\u003e\u003ccode\u003e3e6a0f4\u003c/code\u003e\u003c/a\u003e release: 2.26.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/2662e81254403b708b6e5c33867023970065637d\"\u003e\u003ccode\u003e2662e81\u003c/code\u003e\u003c/a\u003e fix(security): override \u003ccode\u003e@​tootallnate/once\u003c/code\u003e to ^2.0.1 (CVE-2026-3449) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/822\"\u003e#822\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/e9a52384ec83ca5c3ff3bc8ab23de7ca03735867\"\u003e\u003ccode\u003ee9a5238\u003c/code\u003e\u003c/a\u003e fix: improve partial publishing recovery for CocoaPods and GitHub targets (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/821\"\u003e#821\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/da0e0c127b44eb0d068459e6fbd63478dd4fd848\"\u003e\u003ccode\u003eda0e0c1\u003c/code\u003e\u003c/a\u003e fix(nuget): move global.json aside during \u003ccode\u003edotnet setversion\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/820\"\u003e#820\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d1fa7db99ab95886732b0cd7fb83ccc14444ab6b\"\u003e\u003ccode\u003ed1fa7db\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ca52417b198130266c8131f3dbf5bc126b7e2eea\"\u003e\u003ccode\u003eca52417\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.5'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/bc2e6a9952e62250e5469d5a853a7a438692ccc1\"\u003e\u003ccode\u003ebc2e6a9\u003c/code\u003e\u003c/a\u003e release: 2.26.5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/60b80e5cc225989718235c710132ed21aa4cda8f\"\u003e\u003ccode\u003e60b80e5\u003c/code\u003e\u003c/a\u003e fix(security): bump devalue override to ^5.8.1 (CVE-2026-42570) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/818\"\u003e#818\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7bd293105a1819725fe96a720732e3a42eb76899\"\u003e\u003ccode\u003e7bd2931\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1389909e60043a0d86efaec861b826d1ea005d2a\"\u003e\u003ccode\u003e1389909\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.4'\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/3dc647fee3586e57c7c31eb900fdec7cbb44f23f...3e6a0f477702864bb5854384b390a0db3325428e\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.26.2\u0026new-version=2.26.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-javascript/pull/21299","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-javascript/issues/21299","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/21299/packages"}},{"old_version":"2.20.1","new_version":"2.26.6","update_type":"minor","path":null,"pr_created_at":"2026-05-27T01:16:34.000Z","version_change":"2.20.1 → 2.26.6","issue":{"uuid":"4528668660","node_id":"PR_kwDORdMCOc7fomoM","number":37,"state":"closed","title":"Bump getsentry/craft from 2.20.1 to 2.26.6","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":6,"pull_request":true,"closed_at":"2026-06-09T21:05:04.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-27T01:16:34.000Z","updated_at":"2026-06-09T21:05:06.000Z","time_to_close":1194510,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"getsentry/craft","old_version":"2.20.1","new_version":"2.26.6","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.20.1 to 2.26.6.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.26.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(nuget) Move global.json aside during \u003ccode\u003edotnet setversion\u003c/code\u003e by \u003ca href=\"https://github.com/jamescrosswell\"\u003e\u003ccode\u003e@​jamescrosswell\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/820\"\u003e#820\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Override \u003ccode\u003e@​tootallnate/once\u003c/code\u003e to ^2.0.1 (CVE-2026-3449) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/822\"\u003e#822\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove partial publishing recovery for CocoaPods and GitHub targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/821\"\u003e#821\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Bump devalue override to ^5.8.1 (CVE-2026-42570) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/818\"\u003e#818\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Prevent script injection in changelog-preview workflow by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/813\"\u003e#813\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eResolve open dependabot security alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/816\"\u003e#816\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump simple-git from 3.33.0 to 3.36.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/814\"\u003e#814\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePrevent shell injection vulnerabilities in GitHub Actions workflows by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/811\"\u003e#811\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.2\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/810\"\u003e#810\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(prepare) Remove --allow-remote-config gate by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/809\"\u003e#809\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.18.1 to 6.1.6 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/806\"\u003e#806\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.5.7 to 5.7.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/808\"\u003e#808\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.1\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(release-env) Allowlist GITHUB_* and RUNNER_* by prefix by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/807\"\u003e#807\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Tolerate workspace:* deps in version bump and bun.lock patching by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/805\"\u003e#805\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.26.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(nuget) Move global.json aside during \u003ccode\u003edotnet setversion\u003c/code\u003e by \u003ca href=\"https://github.com/jamescrosswell\"\u003e\u003ccode\u003e@​jamescrosswell\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/820\"\u003e#820\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Override \u003ccode\u003e@​tootallnate/once\u003c/code\u003e to ^2.0.1 (CVE-2026-3449) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/822\"\u003e#822\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove partial publishing recovery for CocoaPods and GitHub targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/821\"\u003e#821\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Bump devalue override to ^5.8.1 (CVE-2026-42570) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/818\"\u003e#818\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Prevent script injection in changelog-preview workflow by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/813\"\u003e#813\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eResolve open dependabot security alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/816\"\u003e#816\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump simple-git from 3.33.0 to 3.36.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/814\"\u003e#814\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePrevent shell injection vulnerabilities in GitHub Actions workflows by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/811\"\u003e#811\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.2\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/810\"\u003e#810\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(prepare) Remove --allow-remote-config gate by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/809\"\u003e#809\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.18.1 to 6.1.6 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/806\"\u003e#806\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.5.7 to 5.7.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/808\"\u003e#808\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3e6a0f477702864bb5854384b390a0db3325428e\"\u003e\u003ccode\u003e3e6a0f4\u003c/code\u003e\u003c/a\u003e release: 2.26.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/2662e81254403b708b6e5c33867023970065637d\"\u003e\u003ccode\u003e2662e81\u003c/code\u003e\u003c/a\u003e fix(security): override \u003ccode\u003e@​tootallnate/once\u003c/code\u003e to ^2.0.1 (CVE-2026-3449) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/822\"\u003e#822\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/e9a52384ec83ca5c3ff3bc8ab23de7ca03735867\"\u003e\u003ccode\u003ee9a5238\u003c/code\u003e\u003c/a\u003e fix: improve partial publishing recovery for CocoaPods and GitHub targets (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/821\"\u003e#821\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/da0e0c127b44eb0d068459e6fbd63478dd4fd848\"\u003e\u003ccode\u003eda0e0c1\u003c/code\u003e\u003c/a\u003e fix(nuget): move global.json aside during \u003ccode\u003edotnet setversion\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/820\"\u003e#820\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d1fa7db99ab95886732b0cd7fb83ccc14444ab6b\"\u003e\u003ccode\u003ed1fa7db\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ca52417b198130266c8131f3dbf5bc126b7e2eea\"\u003e\u003ccode\u003eca52417\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.5'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/bc2e6a9952e62250e5469d5a853a7a438692ccc1\"\u003e\u003ccode\u003ebc2e6a9\u003c/code\u003e\u003c/a\u003e release: 2.26.5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/60b80e5cc225989718235c710132ed21aa4cda8f\"\u003e\u003ccode\u003e60b80e5\u003c/code\u003e\u003c/a\u003e fix(security): bump devalue override to ^5.8.1 (CVE-2026-42570) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/818\"\u003e#818\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7bd293105a1819725fe96a720732e3a42eb76899\"\u003e\u003ccode\u003e7bd2931\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1389909e60043a0d86efaec861b826d1ea005d2a\"\u003e\u003ccode\u003e1389909\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.4'\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/beea4aba589c66381258cbd131c5551ae8245b82...3e6a0f477702864bb5854384b390a0db3325428e\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.20.1\u0026new-version=2.26.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/ghcpd/v-ShuLiu_26_03_03_case1/pull/37","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghcpd%2Fv-ShuLiu_26_03_03_case1/issues/37","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/37/packages"}},{"old_version":"2.26.3","new_version":"2.26.5","update_type":"patch","path":null,"pr_created_at":"2026-05-19T00:32:50.000Z","version_change":"2.26.3 → 2.26.5","issue":{"uuid":"4473525349","node_id":"PR_kwDOBeVNvs7c32oN","number":3706,"state":"open","title":"build(deps): bump getsentry/craft from 2.26.3 to 2.26.5","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-19T00:32:50.000Z","updated_at":"2026-05-19T00:33:23.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.26.3","new_version":"2.26.5","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.26.3 to 2.26.5.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.26.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Bump devalue override to ^5.8.1 (CVE-2026-42570) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/818\"\u003e#818\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Prevent script injection in changelog-preview workflow by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/813\"\u003e#813\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eResolve open dependabot security alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/816\"\u003e#816\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump simple-git from 3.33.0 to 3.36.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/814\"\u003e#814\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.26.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Bump devalue override to ^5.8.1 (CVE-2026-42570) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/818\"\u003e#818\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(security) Prevent script injection in changelog-preview workflow by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/813\"\u003e#813\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eResolve open dependabot security alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/816\"\u003e#816\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump simple-git from 3.33.0 to 3.36.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/814\"\u003e#814\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePrevent shell injection vulnerabilities in GitHub Actions workflows by \u003ca href=\"https://github.com/fix-it-felix-sentry\"\u003e\u003ccode\u003e@​fix-it-felix-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/811\"\u003e#811\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.2\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/810\"\u003e#810\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(prepare) Remove --allow-remote-config gate by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/809\"\u003e#809\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.18.1 to 6.1.6 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/806\"\u003e#806\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.5.7 to 5.7.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/808\"\u003e#808\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.1\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(release-env) Allowlist GITHUB_* and RUNNER_* by prefix by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/807\"\u003e#807\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Tolerate workspace:* deps in version bump and bun.lock patching by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/805\"\u003e#805\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/bc2e6a9952e62250e5469d5a853a7a438692ccc1\"\u003e\u003ccode\u003ebc2e6a9\u003c/code\u003e\u003c/a\u003e release: 2.26.5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/60b80e5cc225989718235c710132ed21aa4cda8f\"\u003e\u003ccode\u003e60b80e5\u003c/code\u003e\u003c/a\u003e fix(security): bump devalue override to ^5.8.1 (CVE-2026-42570) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/818\"\u003e#818\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7bd293105a1819725fe96a720732e3a42eb76899\"\u003e\u003ccode\u003e7bd2931\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1389909e60043a0d86efaec861b826d1ea005d2a\"\u003e\u003ccode\u003e1389909\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.4'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/70714dda896a3f5d5ad0a3e55b1d73a64ee7bf8f\"\u003e\u003ccode\u003e70714dd\u003c/code\u003e\u003c/a\u003e release: 2.26.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/a7098dacedd5059c79c16f91904fbf9d5ad7452e\"\u003e\u003ccode\u003ea7098da\u003c/code\u003e\u003c/a\u003e fix: resolve open dependabot security alerts (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/816\"\u003e#816\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ebbd176584274b992ba3d0571c02d63d059ba1c8\"\u003e\u003ccode\u003eebbd176\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump simple-git from 3.33.0 to 3.36.0 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/814\"\u003e#814\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/134b6504b320fe5c0cb320143451ff0c416d1b5b\"\u003e\u003ccode\u003e134b650\u003c/code\u003e\u003c/a\u003e fix(security): Prevent script injection in changelog-preview workflow (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/813\"\u003e#813\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/e04c7038371fc9b874a6df2ca18ab667e7f6f61d\"\u003e\u003ccode\u003ee04c703\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/0589632c86a4e90293b982df8bfecc3afce3e36c\"\u003e\u003ccode\u003e0589632\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.3'\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/getsentry/craft/compare/bae212ca7aec50bb716eafd387c80bcfb28da937...bc2e6a9952e62250e5469d5a853a7a438692ccc1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.26.3\u0026new-version=2.26.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-dart/pull/3706","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-dart/issues/3706","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/3706/packages"}},{"old_version":"2.25.4","new_version":"2.26.2","update_type":"minor","path":null,"pr_created_at":"2026-04-27T03:53:10.000Z","version_change":"2.25.4 → 2.26.2","issue":{"uuid":"4332962084","node_id":"PR_kwDOCDbi-87V0SQ0","number":6142,"state":"open","title":"build(deps): bump getsentry/craft from 2.25.4 to 2.26.2","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-04-27T03:53:10.000Z","updated_at":"2026-04-27T03:59:35.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.25.4","new_version":"2.26.2","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.25.4 to 2.26.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.26.2\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/810\"\u003e#810\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(prepare) Remove --allow-remote-config gate by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/809\"\u003e#809\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.18.1 to 6.1.6 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/806\"\u003e#806\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.5.7 to 5.7.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/808\"\u003e#808\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.1\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(release-env) Allowlist GITHUB_* and RUNNER_* by prefix by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/807\"\u003e#807\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Tolerate workspace:* deps in version bump and bun.lock patching by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/805\"\u003e#805\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix Node 20 + app-id deprecation warnings, refresh Node matrix by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/803\"\u003e#803\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.0\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ci) Pin third-party GitHub Actions to commit SHAs by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/801\"\u003e#801\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(commit-repo) Replace execSync tar with node-tar by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/799\"\u003e#799\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gpg) Pipe private key via stdin instead of writing to /tmp by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/798\"\u003e#798\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Move publish-state file out of repo cwd by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/797\"\u003e#797\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(spawn) Strip dynamic-linker env vars from subprocess env by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/800\"\u003e#800\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRecognize \u003ccode\u003esecurity:\u003c/code\u003e commit prefix for changelog and versioning by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/802\"\u003e#802\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003ch4\u003eSecurity\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eMove workflow to pull_request and do not persist creds by \u003ca href=\"https://github.com/geoffg-sentry\"\u003e\u003ccode\u003e@​geoffg-sentry\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/796\"\u003e#796\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDisable .craft.env reading and harden release subprocess env by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/794\"\u003e#794\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.26.2\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/810\"\u003e#810\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(prepare) Remove --allow-remote-config gate by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/809\"\u003e#809\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.18.1 to 6.1.6 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/806\"\u003e#806\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.5.7 to 5.7.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/808\"\u003e#808\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.1\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(release-env) Allowlist GITHUB_* and RUNNER_* by prefix by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/807\"\u003e#807\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Tolerate workspace:* deps in version bump and bun.lock patching by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/805\"\u003e#805\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix Node 20 + app-id deprecation warnings, refresh Node matrix by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/803\"\u003e#803\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.26.0\u003c/h2\u003e\n\u003ch3\u003eSecurity 🔒\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ci) Pin third-party GitHub Actions to commit SHAs by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/801\"\u003e#801\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(commit-repo) Replace execSync tar with node-tar by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/799\"\u003e#799\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gpg) Pipe private key via stdin instead of writing to /tmp by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/798\"\u003e#798\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Move publish-state file out of repo cwd by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/797\"\u003e#797\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(spawn) Strip dynamic-linker env vars from subprocess env by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/800\"\u003e#800\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRecognize \u003ccode\u003esecurity:\u003c/code\u003e commit prefix for changelog and versioning by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/802\"\u003e#802\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003ch4\u003eSecurity\u003c/h4\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3dc647fee3586e57c7c31eb900fdec7cbb44f23f\"\u003e\u003ccode\u003e3dc647f\u003c/code\u003e\u003c/a\u003e release: 2.26.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3739fa14b4cdeb60f755f69cca623ecb57f46608\"\u003e\u003ccode\u003e3739fa1\u003c/code\u003e\u003c/a\u003e security(deps): bump uuid to ^14.0.0 (fix GHSA-w5hq-g745-h8pq) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/810\"\u003e#810\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/86fd3dadc299588db78108b6792351352c969c0e\"\u003e\u003ccode\u003e86fd3da\u003c/code\u003e\u003c/a\u003e fix(prepare): remove --allow-remote-config gate (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/809\"\u003e#809\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3294203f73cc00ba13488b649b228b11254a68c8\"\u003e\u003ccode\u003e3294203\u003c/code\u003e\u003c/a\u003e build(deps): bump astro from 5.18.1 to 6.1.6 in /docs (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/806\"\u003e#806\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ad5568e7715d729e221734493cca255d86d7f722\"\u003e\u003ccode\u003ead5568e\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump fast-xml-parser from 5.5.7 to 5.7.0 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/808\"\u003e#808\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/19b7281452e83e8bbe69d003fd28f1829f47700f\"\u003e\u003ccode\u003e19b7281\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/a8d2fd6d6be122c0a3a319f3358f0851127b1520\"\u003e\u003ccode\u003ea8d2fd6\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.26.1'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/c248b38be4dbcdb95ba538f39a2336d7dd12b9f7\"\u003e\u003ccode\u003ec248b38\u003c/code\u003e\u003c/a\u003e release: 2.26.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/c5c5d7a9e557efca12f84ed3c4cc5f83447fed11\"\u003e\u003ccode\u003ec5c5d7a\u003c/code\u003e\u003c/a\u003e security(release-env): allowlist GITHUB_* and RUNNER_* by prefix (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/807\"\u003e#807\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/2ec39c05f6bb5356fa5eb069982b661010d2b0a8\"\u003e\u003ccode\u003e2ec39c0\u003c/code\u003e\u003c/a\u003e fix(npm): tolerate workspace:* deps in version bump and bun.lock patching (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/805\"\u003e#805\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/97d0c4286f32a80d09c8b89366d762fecc3e27b6...3dc647fee3586e57c7c31eb900fdec7cbb44f23f\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.25.4\u0026new-version=2.26.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-python/pull/6142","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-python/issues/6142","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/6142/packages"}},{"old_version":"2.25.2","new_version":"2.25.4","update_type":"patch","path":null,"pr_created_at":"2026-04-20T03:53:10.000Z","version_change":"2.25.2 → 2.25.4","issue":{"uuid":"4292976311","node_id":"PR_kwDOCDbi-87Tz2CT","number":6096,"state":"open","title":"build(deps): bump getsentry/craft from 2.25.2 to 2.25.4","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-04-20T03:53:10.000Z","updated_at":"2026-04-20T03:59:49.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.25.2","new_version":"2.25.4","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.25.2 to 2.25.4.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.25.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(publish) Replace CRAFT_NEW_VERSION with CRAFT_RELEASED_VERSION in post-release env by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/793\"\u003e#793\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security vulnerabilities in vite, picomatch, and defu by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/791\"\u003e#791\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Distinguish auth failures from merge conflicts in post-publish merge by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/788\"\u003e#788\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.25.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(publish) Replace CRAFT_NEW_VERSION with CRAFT_RELEASED_VERSION in post-release env by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/793\"\u003e#793\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security vulnerabilities in vite, picomatch, and defu by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/791\"\u003e#791\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Distinguish auth failures from merge conflicts in post-publish merge by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/788\"\u003e#788\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePreserve HTML blocks (e.g., \u003ccode\u003e\u0026lt;img\u0026gt;\u003c/code\u003e tags from GitHub image uploads) in custom \u003ccode\u003e## Changelog Entry\u003c/code\u003e PR sections instead of silently dropping them. by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/786\"\u003e#786\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps) Bump brace-expansion from 5.0.4 to 5.0.5 by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/787\"\u003e#787\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpgrade GitHub Actions to Node.js 24 compatible versions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/784\"\u003e#784\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.16.11 to 5.18.1 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/785\"\u003e#785\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/783\"\u003e#783\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCommit changelog even when preReleaseCommand returns false by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/781\"\u003e#781\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eReformat codebase with Prettier and add CI enforcement by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/782\"\u003e#782\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(registry) Require and validate registry metadata on first publish by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/777\"\u003e#777\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for fast-xml-parser, h3, and flatted by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/780\"\u003e#780\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Make post-publish merge failure non-fatal with resolve strategy retry by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/778\"\u003e#778\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/97d0c4286f32a80d09c8b89366d762fecc3e27b6\"\u003e\u003ccode\u003e97d0c42\u003c/code\u003e\u003c/a\u003e release: 2.25.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6e59f3bf6ca5008a6d23254a9b54b519f6b30a6e\"\u003e\u003ccode\u003e6e59f3b\u003c/code\u003e\u003c/a\u003e fix(publish): replace CRAFT_NEW_VERSION with CRAFT_RELEASED_VERSION in post-r...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/885f168ceaf33b2f2a5549b2fa1504a25a2479cf\"\u003e\u003ccode\u003e885f168\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6903199370b867ae64c3e068158b49e614ab714b\"\u003e\u003ccode\u003e6903199\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.25.3'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/9a8e27a89529970cc0f241c6b77fdcbc32838c03\"\u003e\u003ccode\u003e9a8e27a\u003c/code\u003e\u003c/a\u003e release: 2.25.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6ba86bc9ae3839790be7357bba5514a45a97fb53\"\u003e\u003ccode\u003e6ba86bc\u003c/code\u003e\u003c/a\u003e fix(deps): address security vulnerabilities in vite, picomatch, and defu (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/791\"\u003e#791\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/f081abe071b1d8f9ede79ff21b12d679c6e77f4e\"\u003e\u003ccode\u003ef081abe\u003c/code\u003e\u003c/a\u003e fix(publish): distinguish auth failures from merge conflicts in post-publish ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/dab9468687ef82c0e0384f73cae03fcac032032f\"\u003e\u003ccode\u003edab9468\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3c9e16f72aee7e1dd12d8b9ae2d6e989495b10f4\"\u003e\u003ccode\u003e3c9e16f\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.25.2'\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/getsentry/craft/compare/ba01e596c4a4c07692f0de10b0d4fe05f3dd0292...97d0c4286f32a80d09c8b89366d762fecc3e27b6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.25.2\u0026new-version=2.25.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-python/pull/6096","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-python/issues/6096","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/6096/packages"}},{"old_version":"2.25.0","new_version":"2.25.2","update_type":"patch","path":null,"pr_created_at":"2026-03-30T03:53:29.000Z","version_change":"2.25.0 → 2.25.2","issue":{"uuid":"4167010419","node_id":"PR_kwDOCDbi-87OeUCX","number":5911,"state":"open","title":"build(deps): bump getsentry/craft from 2.25.0 to 2.25.2","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-03-30T03:53:29.000Z","updated_at":"2026-03-30T03:59:48.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.25.0","new_version":"2.25.2","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.25.0 to 2.25.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.25.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePreserve HTML blocks (e.g., \u003ccode\u003e\u0026lt;img\u0026gt;\u003c/code\u003e tags from GitHub image uploads) in custom \u003ccode\u003e## Changelog Entry\u003c/code\u003e PR sections instead of silently dropping them. by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/786\"\u003e#786\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps) Bump brace-expansion from 5.0.4 to 5.0.5 by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/787\"\u003e#787\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpgrade GitHub Actions to Node.js 24 compatible versions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/784\"\u003e#784\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.16.11 to 5.18.1 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/785\"\u003e#785\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/783\"\u003e#783\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCommit changelog even when preReleaseCommand returns false by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/781\"\u003e#781\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eReformat codebase with Prettier and add CI enforcement by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/782\"\u003e#782\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.25.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePreserve HTML blocks (e.g., \u003ccode\u003e\u0026lt;img\u0026gt;\u003c/code\u003e tags from GitHub image uploads) in custom \u003ccode\u003e## Changelog Entry\u003c/code\u003e PR sections instead of silently dropping them. by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/786\"\u003e#786\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps) Bump brace-expansion from 5.0.4 to 5.0.5 by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/787\"\u003e#787\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpgrade GitHub Actions to Node.js 24 compatible versions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/784\"\u003e#784\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.16.11 to 5.18.1 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/785\"\u003e#785\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/783\"\u003e#783\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCommit changelog even when preReleaseCommand returns false by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/781\"\u003e#781\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eReformat codebase with Prettier and add CI enforcement by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/782\"\u003e#782\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(registry) Require and validate registry metadata on first publish by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/777\"\u003e#777\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for fast-xml-parser, h3, and flatted by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/780\"\u003e#780\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Make post-publish merge failure non-fatal with resolve strategy retry by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/778\"\u003e#778\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.8 to 5.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/779\"\u003e#779\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for flatted and devalue by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/775\"\u003e#775\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(prepare) Handle scoped tag prefixes in auto version resolution by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/773\"\u003e#773\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate CI actions from Node.js 20 SHA pins to latest by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/774\"\u003e#774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ba01e596c4a4c07692f0de10b0d4fe05f3dd0292\"\u003e\u003ccode\u003eba01e59\u003c/code\u003e\u003c/a\u003e release: 2.25.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/507962acac92471452229b89fec259a4ca653ca3\"\u003e\u003ccode\u003e507962a\u003c/code\u003e\u003c/a\u003e fix(deps): bump brace-expansion from 5.0.4 to 5.0.5 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/787\"\u003e#787\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b811104f3055861eb15da872b8815fd743ceace9\"\u003e\u003ccode\u003eb811104\u003c/code\u003e\u003c/a\u003e build(deps): bump astro from 5.16.11 to 5.18.1 in /docs (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/785\"\u003e#785\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/a3ad8d359bd980a9618ba505031407bb98ba9af2\"\u003e\u003ccode\u003ea3ad8d3\u003c/code\u003e\u003c/a\u003e fix(changelog): preserve HTML blocks in custom changelog entry sections (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/786\"\u003e#786\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d80bdf5838fc61ebf98313f6a20f698b5700a4cd\"\u003e\u003ccode\u003ed80bdf5\u003c/code\u003e\u003c/a\u003e fix: upgrade GitHub Actions to Node.js 24 compatible versions (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/784\"\u003e#784\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/390ea43f4f980826b8b4d69a70e43dbcb4bf6401\"\u003e\u003ccode\u003e390ea43\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/724f9ff5547e18da11439853a05210f15c9540e7\"\u003e\u003ccode\u003e724f9ff\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.25.1'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/14aca37e23aa6d8239a4013cae86d3bae4b4e0cd\"\u003e\u003ccode\u003e14aca37\u003c/code\u003e\u003c/a\u003e release: 2.25.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7223a48b850b70701693c40177eb96ad0649a6a4\"\u003e\u003ccode\u003e7223a48\u003c/code\u003e\u003c/a\u003e fix(deps): address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/783\"\u003e#783\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/63ed0bf871983d6b02a9d10d9d8f1ddb9105b332\"\u003e\u003ccode\u003e63ed0bf\u003c/code\u003e\u003c/a\u003e chore: reformat codebase with Prettier and add CI enforcement (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/782\"\u003e#782\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/f4889d04564e47311038ecb6b910fef6b6cf1363...ba01e596c4a4c07692f0de10b0d4fe05f3dd0292\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.25.0\u0026new-version=2.25.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-python/pull/5911","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-python/issues/5911","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5911/packages"}},{"old_version":"2.25.0","new_version":"2.25.2","update_type":"patch","path":null,"pr_created_at":"2026-03-27T19:04:22.000Z","version_change":"2.25.0 → 2.25.2","issue":{"uuid":"4155249240","node_id":"PR_kwDOA09jXc7OIuzM","number":7748,"state":"closed","title":"chore(deps): bump getsentry/craft from 2.25.0 to 2.25.2","user":"dependabot[bot]","labels":["dependencies","ready-to-merge","violating-contribution-guidelines","issue-already-assigned"],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":"2026-03-27T19:04:42.000Z","author_association":null,"state_reason":null,"created_at":"2026-03-27T19:04:22.000Z","updated_at":"2026-03-27T19:18:06.000Z","time_to_close":20,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"getsentry/craft","old_version":"2.25.0","new_version":"2.25.2","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.25.0 to 2.25.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.25.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePreserve HTML blocks (e.g., \u003ccode\u003e\u0026lt;img\u0026gt;\u003c/code\u003e tags from GitHub image uploads) in custom \u003ccode\u003e## Changelog Entry\u003c/code\u003e PR sections instead of silently dropping them. by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/786\"\u003e#786\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps) Bump brace-expansion from 5.0.4 to 5.0.5 by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/787\"\u003e#787\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpgrade GitHub Actions to Node.js 24 compatible versions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/784\"\u003e#784\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.16.11 to 5.18.1 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/785\"\u003e#785\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/783\"\u003e#783\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCommit changelog even when preReleaseCommand returns false by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/781\"\u003e#781\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eReformat codebase with Prettier and add CI enforcement by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/782\"\u003e#782\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.25.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ePreserve HTML blocks (e.g., \u003ccode\u003e\u0026lt;img\u0026gt;\u003c/code\u003e tags from GitHub image uploads) in custom \u003ccode\u003e## Changelog Entry\u003c/code\u003e PR sections instead of silently dropping them. by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/786\"\u003e#786\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(deps) Bump brace-expansion from 5.0.4 to 5.0.5 by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/787\"\u003e#787\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpgrade GitHub Actions to Node.js 24 compatible versions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/784\"\u003e#784\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Bump astro from 5.16.11 to 5.18.1 in /docs by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/785\"\u003e#785\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/783\"\u003e#783\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCommit changelog even when preReleaseCommand returns false by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/781\"\u003e#781\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eReformat codebase with Prettier and add CI enforcement by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/782\"\u003e#782\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.25.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(registry) Require and validate registry metadata on first publish by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/777\"\u003e#777\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for fast-xml-parser, h3, and flatted by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/780\"\u003e#780\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Make post-publish merge failure non-fatal with resolve strategy retry by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/778\"\u003e#778\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.8 to 5.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/779\"\u003e#779\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for flatted and devalue by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/775\"\u003e#775\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(prepare) Handle scoped tag prefixes in auto version resolution by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/773\"\u003e#773\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate CI actions from Node.js 20 SHA pins to latest by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/774\"\u003e#774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ba01e596c4a4c07692f0de10b0d4fe05f3dd0292\"\u003e\u003ccode\u003eba01e59\u003c/code\u003e\u003c/a\u003e release: 2.25.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/507962acac92471452229b89fec259a4ca653ca3\"\u003e\u003ccode\u003e507962a\u003c/code\u003e\u003c/a\u003e fix(deps): bump brace-expansion from 5.0.4 to 5.0.5 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/787\"\u003e#787\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b811104f3055861eb15da872b8815fd743ceace9\"\u003e\u003ccode\u003eb811104\u003c/code\u003e\u003c/a\u003e build(deps): bump astro from 5.16.11 to 5.18.1 in /docs (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/785\"\u003e#785\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/a3ad8d359bd980a9618ba505031407bb98ba9af2\"\u003e\u003ccode\u003ea3ad8d3\u003c/code\u003e\u003c/a\u003e fix(changelog): preserve HTML blocks in custom changelog entry sections (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/786\"\u003e#786\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d80bdf5838fc61ebf98313f6a20f698b5700a4cd\"\u003e\u003ccode\u003ed80bdf5\u003c/code\u003e\u003c/a\u003e fix: upgrade GitHub Actions to Node.js 24 compatible versions (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/784\"\u003e#784\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/390ea43f4f980826b8b4d69a70e43dbcb4bf6401\"\u003e\u003ccode\u003e390ea43\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/724f9ff5547e18da11439853a05210f15c9540e7\"\u003e\u003ccode\u003e724f9ff\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.25.1'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/14aca37e23aa6d8239a4013cae86d3bae4b4e0cd\"\u003e\u003ccode\u003e14aca37\u003c/code\u003e\u003c/a\u003e release: 2.25.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7223a48b850b70701693c40177eb96ad0649a6a4\"\u003e\u003ccode\u003e7223a48\u003c/code\u003e\u003c/a\u003e fix(deps): address smol-toml DoS vulnerability (GHSA-v3rj-xjv7-4jmq) (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/783\"\u003e#783\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/63ed0bf871983d6b02a9d10d9d8f1ddb9105b332\"\u003e\u003ccode\u003e63ed0bf\u003c/code\u003e\u003c/a\u003e chore: reformat codebase with Prettier and add CI enforcement (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/782\"\u003e#782\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/f4889d04564e47311038ecb6b910fef6b6cf1363...ba01e596c4a4c07692f0de10b0d4fe05f3dd0292\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.25.0\u0026new-version=2.25.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-cocoa/pull/7748","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-cocoa/issues/7748","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/7748/packages"}},{"old_version":"2.24.2","new_version":"2.25.0","update_type":"minor","path":null,"pr_created_at":"2026-03-23T22:22:45.000Z","version_change":"2.24.2 → 2.25.0","issue":{"uuid":"4124043513","node_id":"PR_kwDOADGDg87M04Ma","number":2035,"state":"closed","title":"chore(deps): bump getsentry/craft from 2.24.2 to 2.25.0","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-03-30T22:49:13.000Z","author_association":null,"state_reason":null,"created_at":"2026-03-23T22:22:45.000Z","updated_at":"2026-03-30T22:49:15.000Z","time_to_close":606388,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"getsentry/craft","old_version":"2.24.2","new_version":"2.25.0","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.24.2 to 2.25.0.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.25.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(registry) Require and validate registry metadata on first publish by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/777\"\u003e#777\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for fast-xml-parser, h3, and flatted by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/780\"\u003e#780\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Make post-publish merge failure non-fatal with resolve strategy retry by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/778\"\u003e#778\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.8 to 5.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/779\"\u003e#779\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.25.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(registry) Require and validate registry metadata on first publish by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/777\"\u003e#777\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for fast-xml-parser, h3, and flatted by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/780\"\u003e#780\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(publish) Make post-publish merge failure non-fatal with resolve strategy retry by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/778\"\u003e#778\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.8 to 5.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/779\"\u003e#779\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for flatted and devalue by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/775\"\u003e#775\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(prepare) Handle scoped tag prefixes in auto version resolution by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/773\"\u003e#773\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate CI actions from Node.js 20 SHA pins to latest by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/774\"\u003e#774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix fenced code blocks being silently dropped from custom changelog entries in PR descriptions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/771\"\u003e#771\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate simple-git and tar to address security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/772\"\u003e#772\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003esdkName\u003c/code\u003e option and symlink creation for SDK packages in registry by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/769\"\u003e#769\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump tar from 7.5.8 to 7.5.10 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/768\"\u003e#768\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/f4889d04564e47311038ecb6b910fef6b6cf1363\"\u003e\u003ccode\u003ef4889d0\u003c/code\u003e\u003c/a\u003e release: 2.25.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ce1233d436f697c99a05cec0db32e53fbad378a1\"\u003e\u003ccode\u003ece1233d\u003c/code\u003e\u003c/a\u003e feat(registry): Require and validate registry metadata on first publish (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/777\"\u003e#777\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/8cddf82427edf7be04802a428aabfd82d04873e1\"\u003e\u003ccode\u003e8cddf82\u003c/code\u003e\u003c/a\u003e fix(deps): address security advisories for fast-xml-parser, h3, and flatted (...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/c22127168665d4e34d230193c5aef314b70bfe35\"\u003e\u003ccode\u003ec221271\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump fast-xml-parser from 5.3.8 to 5.5.7 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/779\"\u003e#779\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/352ba0c48c27196f4b2a001c215bbd245ba0be2f\"\u003e\u003ccode\u003e352ba0c\u003c/code\u003e\u003c/a\u003e fix(publish): make post-publish merge failure non-fatal with resolve strategy...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/dcc2acdee6c520a42f08fec9ebad505c4a7476ac\"\u003e\u003ccode\u003edcc2acd\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/2f57337363f65f02439917b6ece931d3e461ab47\"\u003e\u003ccode\u003e2f57337\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.24.2'\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/getsentry/craft/compare/78da70b88de5cf6245d5d7e3263a9e8952667dec...f4889d04564e47311038ecb6b910fef6b6cf1363\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.24.2\u0026new-version=2.25.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-php/pull/2035","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-php/issues/2035","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2035/packages"}},{"old_version":"2.20.1","new_version":"2.24.2","update_type":"minor","path":null,"pr_created_at":"2026-03-17T21:08:06.000Z","version_change":"2.20.1 → 2.24.2","issue":{"uuid":"4091210455","node_id":"PR_kwDORdMCOc7LWpo8","number":14,"state":"closed","title":"Bump getsentry/craft from 2.20.1 to 2.24.2","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":"2026-03-24T21:07:52.000Z","author_association":null,"state_reason":null,"created_at":"2026-03-17T21:08:06.000Z","updated_at":"2026-03-24T21:07:54.000Z","time_to_close":604786,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"getsentry/craft","old_version":"2.20.1","new_version":"2.24.2","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.20.1 to 2.24.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.24.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for flatted and devalue by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/775\"\u003e#775\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(prepare) Handle scoped tag prefixes in auto version resolution by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/773\"\u003e#773\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate CI actions from Node.js 20 SHA pins to latest by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/774\"\u003e#774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix fenced code blocks being silently dropped from custom changelog entries in PR descriptions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/771\"\u003e#771\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate simple-git and tar to address security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/772\"\u003e#772\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003esdkName\u003c/code\u003e option and symlink creation for SDK packages in registry by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/769\"\u003e#769\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump tar from 7.5.8 to 7.5.10 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/768\"\u003e#768\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eClarify urlTemplate usage and repo_url derivation for registry target by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/766\"\u003e#766\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.24.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address security advisories for flatted and devalue by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/775\"\u003e#775\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(prepare) Handle scoped tag prefixes in auto version resolution by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/773\"\u003e#773\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate CI actions from Node.js 20 SHA pins to latest by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/774\"\u003e#774\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix fenced code blocks being silently dropped from custom changelog entries in PR descriptions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/771\"\u003e#771\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate simple-git and tar to address security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/772\"\u003e#772\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003esdkName\u003c/code\u003e option and symlink creation for SDK packages in registry by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/769\"\u003e#769\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump tar from 7.5.8 to 7.5.10 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/768\"\u003e#768\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eClarify urlTemplate usage and repo_url derivation for registry target by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/766\"\u003e#766\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/78da70b88de5cf6245d5d7e3263a9e8952667dec\"\u003e\u003ccode\u003e78da70b\u003c/code\u003e\u003c/a\u003e release: 2.24.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d9b2273e926ced09c231a9f8d1446611775847f4\"\u003e\u003ccode\u003ed9b2273\u003c/code\u003e\u003c/a\u003e fix(deps): address security advisories for flatted and devalue (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/775\"\u003e#775\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/178f11c4f502652f1589583098de61612cc0fc76\"\u003e\u003ccode\u003e178f11c\u003c/code\u003e\u003c/a\u003e chore: update CI actions from Node.js 20 SHA pins to latest (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/774\"\u003e#774\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/dc4bdfa2d2b8b4256ae44df30de68dd126306b36\"\u003e\u003ccode\u003edc4bdfa\u003c/code\u003e\u003c/a\u003e fix(prepare): handle scoped tag prefixes in auto version resolution (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/773\"\u003e#773\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/4de3f409db820787287ba038d99cb96cf008f022\"\u003e\u003ccode\u003e4de3f40\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/90457fdbd10085778513fc985a389701a2026fb2\"\u003e\u003ccode\u003e90457fd\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.24.1'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/013a7b2113c2cac0ff32d5180cfeaefc7c9ce5b6\"\u003e\u003ccode\u003e013a7b2\u003c/code\u003e\u003c/a\u003e release: 2.24.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/68bff822d4bc5f2cbd0478394be75bcd008c6359\"\u003e\u003ccode\u003e68bff82\u003c/code\u003e\u003c/a\u003e fix(changelog): preserve fenced code blocks in custom PR changelog entries (#...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/0a245240e2073062f21284a330106fc70712e9cc\"\u003e\u003ccode\u003e0a24524\u003c/code\u003e\u003c/a\u003e fix: update simple-git and tar to address security vulnerabilities (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/772\"\u003e#772\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/cea6ee8a44e98444c851a3c2ea41186d90af871b\"\u003e\u003ccode\u003ecea6ee8\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/beea4aba589c66381258cbd131c5551ae8245b82...78da70b88de5cf6245d5d7e3263a9e8952667dec\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.20.1\u0026new-version=2.24.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/ghcpd/v-ShuLiu_26_03_03_case1/pull/14","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/ghcpd%2Fv-ShuLiu_26_03_03_case1/issues/14","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/14/packages"}},{"old_version":"2.23.1","new_version":"2.24.1","update_type":"minor","path":null,"pr_created_at":"2026-03-16T04:18:45.000Z","version_change":"2.23.1 → 2.24.1","issue":{"uuid":"4080124014","node_id":"PR_kwDOADNk_s7KzVlW","number":5197,"state":"open","title":"build(deps): bump getsentry/craft from 2.23.1 to 2.24.1","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-03-16T04:18:45.000Z","updated_at":"2026-03-16T04:19:08.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.23.1","new_version":"2.24.1","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.23.1 to 2.24.1.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.24.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix fenced code blocks being silently dropped from custom changelog entries in PR descriptions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/771\"\u003e#771\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate simple-git and tar to address security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/772\"\u003e#772\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003esdkName\u003c/code\u003e option and symlink creation for SDK packages in registry by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/769\"\u003e#769\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump tar from 7.5.8 to 7.5.10 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/768\"\u003e#768\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eClarify urlTemplate usage and repo_url derivation for registry target by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/766\"\u003e#766\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.24.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix fenced code blocks being silently dropped from custom changelog entries in PR descriptions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/771\"\u003e#771\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate simple-git and tar to address security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/772\"\u003e#772\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.24.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003esdkName\u003c/code\u003e option and symlink creation for SDK packages in registry by \u003ca href=\"https://github.com/s1gr1d\"\u003e\u003ccode\u003e@​s1gr1d\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/769\"\u003e#769\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump tar from 7.5.8 to 7.5.10 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/768\"\u003e#768\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eClarify urlTemplate usage and repo_url derivation for registry target by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/766\"\u003e#766\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(actions) Support \u003ccode\u003epublish_repo: self\u003c/code\u003e for single-repo setups by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/760\"\u003e#760\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/013a7b2113c2cac0ff32d5180cfeaefc7c9ce5b6\"\u003e\u003ccode\u003e013a7b2\u003c/code\u003e\u003c/a\u003e release: 2.24.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/68bff822d4bc5f2cbd0478394be75bcd008c6359\"\u003e\u003ccode\u003e68bff82\u003c/code\u003e\u003c/a\u003e fix(changelog): preserve fenced code blocks in custom PR changelog entries (#...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/0a245240e2073062f21284a330106fc70712e9cc\"\u003e\u003ccode\u003e0a24524\u003c/code\u003e\u003c/a\u003e fix: update simple-git and tar to address security vulnerabilities (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/772\"\u003e#772\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/cea6ee8a44e98444c851a3c2ea41186d90af871b\"\u003e\u003ccode\u003ecea6ee8\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1f5e6bbec14f28516e0a8b4cc169863cbd98d911\"\u003e\u003ccode\u003e1f5e6bb\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.24.0'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/41c598a46bba929ea51a3923e1117a4a13b619a2\"\u003e\u003ccode\u003e41c598a\u003c/code\u003e\u003c/a\u003e release: 2.24.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/46e66480ce1fc971f159b3592b4abb9679991ad0\"\u003e\u003ccode\u003e46e6648\u003c/code\u003e\u003c/a\u003e feat: Add \u003ccode\u003esdkName\u003c/code\u003e option and symlink creation for SDK packages in registry ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/05e58744df38569b0a8ddfb02657a3e6379ac13f\"\u003e\u003ccode\u003e05e5874\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump tar from 7.5.8 to 7.5.10 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/768\"\u003e#768\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/29d91c10992868320a8ca3393b53f10ffb8c91e9\"\u003e\u003ccode\u003e29d91c1\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d9b156c6cb4d0f4a150a435b43286ad7fc13394c\"\u003e\u003ccode\u003ed9b156c\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.23.2'\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/d4cfac9d25d1fc72c9241e5d22aff559a114e4e9...013a7b2113c2cac0ff32d5180cfeaefc7c9ce5b6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.23.1\u0026new-version=2.24.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-java/pull/5197","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-java/issues/5197","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5197/packages"}},{"old_version":"2.23.1","new_version":"2.23.2","update_type":"patch","path":null,"pr_created_at":"2026-03-09T08:27:35.000Z","version_change":"2.23.1 → 2.23.2","issue":{"uuid":"4044138876","node_id":"PR_kwDOB_MgjM7I_4KU","number":4989,"state":"open","title":"build(deps): bump getsentry/craft from 2.23.1 to 2.23.2","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-03-09T08:27:35.000Z","updated_at":"2026-03-09T08:28:04.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.23.1","new_version":"2.23.2","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.23.1 to 2.23.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eClarify urlTemplate usage and repo_url derivation for registry target by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/766\"\u003e#766\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.23.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eResolve 4 open Dependabot security alerts via pnpm overrides by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/767\"\u003e#767\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eClarify urlTemplate usage and repo_url derivation for registry target by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/766\"\u003e#766\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(actions) Support \u003ccode\u003epublish_repo: self\u003c/code\u003e for single-repo setups by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/760\"\u003e#760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Add test/tests/style to default internal changes categories by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/759\"\u003e#759\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address Dependabot security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/761\"\u003e#761\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.7\u003c/h2\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 5.3.4 to 5.3.6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/757\"\u003e#757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.7 to 7.5.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/758\"\u003e#758\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d630201930c7fe5aee6366ebee19ebb681128512\"\u003e\u003ccode\u003ed630201\u003c/code\u003e\u003c/a\u003e release: 2.23.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/c98487330b52e1535b4786fb0574249603f01265\"\u003e\u003ccode\u003ec984873\u003c/code\u003e\u003c/a\u003e fix: resolve 4 open Dependabot security alerts via pnpm overrides (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/767\"\u003e#767\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d28006e204d984893ecc47e5b874e685ea255137\"\u003e\u003ccode\u003ed28006e\u003c/code\u003e\u003c/a\u003e docs: clarify urlTemplate usage and repo_url derivation for registry target (...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/227dd56aeb924bcfc63345df81961823d27c52e5\"\u003e\u003ccode\u003e227dd56\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/a3de9084cc97778d161fac3bef44583afa1f5545\"\u003e\u003ccode\u003ea3de908\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.23.1'\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/getsentry/craft/compare/d4cfac9d25d1fc72c9241e5d22aff559a114e4e9...d630201930c7fe5aee6366ebee19ebb681128512\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.23.1\u0026new-version=2.23.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-dotnet/pull/4989","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-dotnet/issues/4989","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4989/packages"}},{"old_version":"2.21.7","new_version":"2.23.1","update_type":"minor","path":null,"pr_created_at":"2026-03-02T10:24:30.000Z","version_change":"2.21.7 → 2.23.1","issue":{"uuid":"4010465025","node_id":"PR_kwDOAxKOj87HSjGF","number":4195,"state":"open","title":"build(deps): bump getsentry/craft from 2.21.7 to 2.23.1","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-03-02T10:24:30.000Z","updated_at":"2026-03-02T10:24:49.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.21.7","new_version":"2.23.1","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.21.7 to 2.23.1.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(actions) Support \u003ccode\u003epublish_repo: self\u003c/code\u003e for single-repo setups by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/760\"\u003e#760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Add test/tests/style to default internal changes categories by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/759\"\u003e#759\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address Dependabot security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/761\"\u003e#761\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(actions) Support \u003ccode\u003epublish_repo: self\u003c/code\u003e for single-repo setups by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/760\"\u003e#760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Add test/tests/style to default internal changes categories by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/759\"\u003e#759\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address Dependabot security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/761\"\u003e#761\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.7\u003c/h2\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 5.3.4 to 5.3.6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/757\"\u003e#757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.7 to 7.5.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/758\"\u003e#758\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d4cfac9d25d1fc72c9241e5d22aff559a114e4e9\"\u003e\u003ccode\u003ed4cfac9\u003c/code\u003e\u003c/a\u003e release: 2.23.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/75808087ebb9295ffab8f888c9672e2698c6271d\"\u003e\u003ccode\u003e7580808\u003c/code\u003e\u003c/a\u003e fix(changelog): categorize direct commits (no PR) by commit_patterns (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/764\"\u003e#764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6aacbec1fa2e481130c89c11e271a59826ce9e0a\"\u003e\u003ccode\u003e6aacbec\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump fast-xml-parser from 5.3.6 to 5.3.8 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/762\"\u003e#762\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/412533a7e46d13f8aa08337627dd86ced1bb0792\"\u003e\u003ccode\u003e412533a\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6d625a1ede980dd4f71725afae00ae23703e1b39\"\u003e\u003ccode\u003e6d625a1\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.23.0'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ce288193e2ac7976b0ffd1d5733527605e6fd63b\"\u003e\u003ccode\u003ece28819\u003c/code\u003e\u003c/a\u003e release: 2.23.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b02365c5290f5c49067e336fe207afd5cea4ce8f\"\u003e\u003ccode\u003eb02365c\u003c/code\u003e\u003c/a\u003e feat(npm): support OIDC trusted publishing (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/763\"\u003e#763\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/475342d98b397399d0cd4cfc3583179ff7139b9c\"\u003e\u003ccode\u003e475342d\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/30f43a853968f2c38043d55146fc79d14ee7355b\"\u003e\u003ccode\u003e30f43a8\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.22.0'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1db39410d293a253e6affbe98c8c6f29db6e218d\"\u003e\u003ccode\u003e1db3941\u003c/code\u003e\u003c/a\u003e release: 2.22.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/41defb379de52e5f0e3943944fa5575b22fb9f92...d4cfac9d25d1fc72c9241e5d22aff559a114e4e9\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.21.7\u0026new-version=2.23.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/self-hosted/pull/4195","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fself-hosted/issues/4195","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4195/packages"}},{"old_version":"2.20.1","new_version":"2.23.1","update_type":"minor","path":null,"pr_created_at":"2026-03-02T03:52:55.000Z","version_change":"2.20.1 → 2.23.1","issue":{"uuid":"4009120269","node_id":"PR_kwDOCDbi-87HOOdR","number":5570,"state":"open","title":"build(deps): bump getsentry/craft from 2.20.1 to 2.23.1","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-03-02T03:52:55.000Z","updated_at":"2026-03-02T03:58:12.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.20.1","new_version":"2.23.1","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.20.1 to 2.23.1.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(actions) Support \u003ccode\u003epublish_repo: self\u003c/code\u003e for single-repo setups by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/760\"\u003e#760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Add test/tests/style to default internal changes categories by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/759\"\u003e#759\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address Dependabot security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/761\"\u003e#761\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.7\u003c/h2\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 5.3.4 to 5.3.6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/757\"\u003e#757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.7 to 7.5.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/758\"\u003e#758\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.23.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Categorize direct commits (no PR) by commit_patterns by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/764\"\u003e#764\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps-dev) Bump fast-xml-parser from 5.3.6 to 5.3.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/762\"\u003e#762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.23.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(npm) Support OIDC trusted publishing by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/763\"\u003e#763\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.22.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(actions) Support \u003ccode\u003epublish_repo: self\u003c/code\u003e for single-repo setups by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/760\"\u003e#760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Add test/tests/style to default internal changes categories by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/759\"\u003e#759\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(deps) Address Dependabot security vulnerabilities by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/761\"\u003e#761\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.7\u003c/h2\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 5.3.4 to 5.3.6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/757\"\u003e#757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.7 to 7.5.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/758\"\u003e#758\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/d4cfac9d25d1fc72c9241e5d22aff559a114e4e9\"\u003e\u003ccode\u003ed4cfac9\u003c/code\u003e\u003c/a\u003e release: 2.23.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/75808087ebb9295ffab8f888c9672e2698c6271d\"\u003e\u003ccode\u003e7580808\u003c/code\u003e\u003c/a\u003e fix(changelog): categorize direct commits (no PR) by commit_patterns (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/764\"\u003e#764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6aacbec1fa2e481130c89c11e271a59826ce9e0a\"\u003e\u003ccode\u003e6aacbec\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump fast-xml-parser from 5.3.6 to 5.3.8 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/762\"\u003e#762\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/412533a7e46d13f8aa08337627dd86ced1bb0792\"\u003e\u003ccode\u003e412533a\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6d625a1ede980dd4f71725afae00ae23703e1b39\"\u003e\u003ccode\u003e6d625a1\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.23.0'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ce288193e2ac7976b0ffd1d5733527605e6fd63b\"\u003e\u003ccode\u003ece28819\u003c/code\u003e\u003c/a\u003e release: 2.23.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b02365c5290f5c49067e336fe207afd5cea4ce8f\"\u003e\u003ccode\u003eb02365c\u003c/code\u003e\u003c/a\u003e feat(npm): support OIDC trusted publishing (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/763\"\u003e#763\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/475342d98b397399d0cd4cfc3583179ff7139b9c\"\u003e\u003ccode\u003e475342d\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/30f43a853968f2c38043d55146fc79d14ee7355b\"\u003e\u003ccode\u003e30f43a8\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.22.0'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1db39410d293a253e6affbe98c8c6f29db6e218d\"\u003e\u003ccode\u003e1db3941\u003c/code\u003e\u003c/a\u003e release: 2.22.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/beea4aba589c66381258cbd131c5551ae8245b82...d4cfac9d25d1fc72c9241e5d22aff559a114e4e9\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.20.1\u0026new-version=2.23.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-python/pull/5570","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-python/issues/5570","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5570/packages"}},{"old_version":"2.20.1","new_version":"2.21.7","update_type":"minor","path":null,"pr_created_at":"2026-02-23T03:52:57.000Z","version_change":"2.20.1 → 2.21.7","issue":{"uuid":"3976180353","node_id":"PR_kwDOCDbi-87Fi4Rq","number":5501,"state":"open","title":"build(deps): bump getsentry/craft from 2.20.1 to 2.21.7","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-02-23T03:52:57.000Z","updated_at":"2026-02-23T03:59:13.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.20.1","new_version":"2.21.7","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.20.1 to 2.21.7.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.7\u003c/h2\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 5.3.4 to 5.3.6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/757\"\u003e#757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.7 to 7.5.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/758\"\u003e#758\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.7\u003c/h2\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 5.3.4 to 5.3.6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/757\"\u003e#757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.7 to 7.5.8 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/758\"\u003e#758\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/41defb379de52e5f0e3943944fa5575b22fb9f92\"\u003e\u003ccode\u003e41defb3\u003c/code\u003e\u003c/a\u003e release: 2.21.7\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/20c884cd0771baa2603c9a83f3ff735294d98562\"\u003e\u003ccode\u003e20c884c\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump fast-xml-parser from 5.3.4 to 5.3.6 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/757\"\u003e#757\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/cdcd94a28a05db8c22a8fc5b5ea0002b66f62643\"\u003e\u003ccode\u003ecdcd94a\u003c/code\u003e\u003c/a\u003e build(deps-dev): bump tar from 7.5.7 to 7.5.8 (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/758\"\u003e#758\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/adb112b2d22ff271adb617d72246ee2f1330d881\"\u003e\u003ccode\u003eadb112b\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/21d7f6219b3aff70d29c2d518ab930efeb0cadea\"\u003e\u003ccode\u003e21d7f62\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.6'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ba4115c4f37e5e82d57e7a59256568d0418ac725\"\u003e\u003ccode\u003eba4115c\u003c/code\u003e\u003c/a\u003e release: 2.21.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/46863f8db4c20fb5816d4b8bb9c2fc89e29ecfc0\"\u003e\u003ccode\u003e46863f8\u003c/code\u003e\u003c/a\u003e fix(ux): show failed check details on status provider failures (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/756\"\u003e#756\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1afb9c36099c36ea16cdcf62005083ce7bdfc798\"\u003e\u003ccode\u003e1afb9c3\u003c/code\u003e\u003c/a\u003e fix(changelog): disable @-mention pings in publish issues for calver releases...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/9a7d6e5f2d7e1d3c4b5945885085c53bafce6df4\"\u003e\u003ccode\u003e9a7d6e5\u003c/code\u003e\u003c/a\u003e fix(github): truncate release body exceeding GitHub 125k char limit (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/754\"\u003e#754\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/184de93c8194bd0926b5be49e97c725f24aec15e\"\u003e\u003ccode\u003e184de93\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/beea4aba589c66381258cbd131c5551ae8245b82...41defb379de52e5f0e3943944fa5575b22fb9f92\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.20.1\u0026new-version=2.21.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-python/pull/5501","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-python/issues/5501","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5501/packages"}},{"old_version":"2.21.4","new_version":"2.21.6","update_type":"patch","path":null,"pr_created_at":"2026-02-18T10:35:14.000Z","version_change":"2.21.4 → 2.21.6","issue":{"uuid":"3957145943","node_id":"PR_kwDODl-XBs7ElUbo","number":1081,"state":"closed","title":"build(deps): bump getsentry/craft from 2.21.4 to 2.21.6","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":"2026-02-23T11:27:41.000Z","author_association":null,"state_reason":null,"created_at":"2026-02-18T10:35:14.000Z","updated_at":"2026-02-23T11:27:43.000Z","time_to_close":435147,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.21.4","new_version":"2.21.6","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.21.4 to 2.21.6.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.6\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(changelog) Disable @-mention pings in publish issues for calver releases by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/755\"\u003e#755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(github) Truncate release body exceeding GitHub 125k char limit by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/754\"\u003e#754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(ux) Show failed check details on status provider failures by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/756\"\u003e#756\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/ba4115c4f37e5e82d57e7a59256568d0418ac725\"\u003e\u003ccode\u003eba4115c\u003c/code\u003e\u003c/a\u003e release: 2.21.6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/46863f8db4c20fb5816d4b8bb9c2fc89e29ecfc0\"\u003e\u003ccode\u003e46863f8\u003c/code\u003e\u003c/a\u003e fix(ux): show failed check details on status provider failures (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/756\"\u003e#756\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1afb9c36099c36ea16cdcf62005083ce7bdfc798\"\u003e\u003ccode\u003e1afb9c3\u003c/code\u003e\u003c/a\u003e fix(changelog): disable @-mention pings in publish issues for calver releases...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/9a7d6e5f2d7e1d3c4b5945885085c53bafce6df4\"\u003e\u003ccode\u003e9a7d6e5\u003c/code\u003e\u003c/a\u003e fix(github): truncate release body exceeding GitHub 125k char limit (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/754\"\u003e#754\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/184de93c8194bd0926b5be49e97c725f24aec15e\"\u003e\u003ccode\u003e184de93\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/0ea4cdc73e4578a25216b33074e8cd32508ecbdb\"\u003e\u003ccode\u003e0ea4cdc\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.5'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5cabbe7d6ae3730788393284d5071969d9309753\"\u003e\u003ccode\u003e5cabbe7\u003c/code\u003e\u003c/a\u003e release: 2.21.5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/8f492eb05ce160e5516d1c524e23026f59659cac\"\u003e\u003ccode\u003e8f492eb\u003c/code\u003e\u003c/a\u003e fix(action): write changelog to file to avoid E2BIG on large repos (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/753\"\u003e#753\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7e5a72131c3dcc83b367959ca139facb4ea4333d\"\u003e\u003ccode\u003e7e5a721\u003c/code\u003e\u003c/a\u003e fix(gh-pages): add CNAME file to preserve custom domain on deploy (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/751\"\u003e#751\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/186d135de614bd8e4e415aa8861121e015d0c6ba\"\u003e\u003ccode\u003e186d135\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/906009a1b771956757e521555b561379307eb667...ba4115c4f37e5e82d57e7a59256568d0418ac725\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.21.4\u0026new-version=2.21.6)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-android-gradle-plugin/pull/1081","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-android-gradle-plugin/issues/1081","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1081/packages"}},{"old_version":"2.21.2","new_version":"2.21.5","update_type":"patch","path":null,"pr_created_at":"2026-02-17T10:32:59.000Z","version_change":"2.21.2 → 2.21.5","issue":{"uuid":"3952049300","node_id":"PR_kwDOA5Fy-s7EUkz8","number":418,"state":"open","title":"build(deps): bump getsentry/craft from 2.21.2 to 2.21.5","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-02-17T10:32:59.000Z","updated_at":"2026-02-17T10:34:27.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.21.2","new_version":"2.21.5","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.21.2 to 2.21.5.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.5\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Write changelog to file to avoid E2BIG on large repos by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/753\"\u003e#753\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(gh-pages) Add CNAME file to preserve custom domain on deploy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/751\"\u003e#751\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5cabbe7d6ae3730788393284d5071969d9309753\"\u003e\u003ccode\u003e5cabbe7\u003c/code\u003e\u003c/a\u003e release: 2.21.5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/8f492eb05ce160e5516d1c524e23026f59659cac\"\u003e\u003ccode\u003e8f492eb\u003c/code\u003e\u003c/a\u003e fix(action): write changelog to file to avoid E2BIG on large repos (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/753\"\u003e#753\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7e5a72131c3dcc83b367959ca139facb4ea4333d\"\u003e\u003ccode\u003e7e5a721\u003c/code\u003e\u003c/a\u003e fix(gh-pages): add CNAME file to preserve custom domain on deploy (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/751\"\u003e#751\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/186d135de614bd8e4e415aa8861121e015d0c6ba\"\u003e\u003ccode\u003e186d135\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5bd6b521e396e4c2fed3e94b986068bf975235e0\"\u003e\u003ccode\u003e5bd6b52\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.4'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/906009a1b771956757e521555b561379307eb667\"\u003e\u003ccode\u003e906009a\u003c/code\u003e\u003c/a\u003e release: 2.21.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/84cdfd99cf763cc010db4cfc0c97544bdd2c607c\"\u003e\u003ccode\u003e84cdfd9\u003c/code\u003e\u003c/a\u003e fix(ux): improve error messages for artifact mismatches and missing release b...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/91e1029e0095fdf9575a0c7f026cf9ce13e0a0ec\"\u003e\u003ccode\u003e91e1029\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b978526aa913c47c8b6b1bef62fe8f114dd9b477\"\u003e\u003ccode\u003eb978526\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.3'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5d154a7facb096e38889be2c6caf2fd23649aa92\"\u003e\u003ccode\u003e5d154a7\u003c/code\u003e\u003c/a\u003e release: 2.21.3\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/63d1636bead951f6e034ed62c2a3610965fef010...5cabbe7d6ae3730788393284d5071969d9309753\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.21.2\u0026new-version=2.21.5)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-fastlane-plugin/pull/418","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-fastlane-plugin/issues/418","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/418/packages"}},{"old_version":"2.21.2","new_version":"2.21.4","update_type":"patch","path":null,"pr_created_at":"2026-02-16T04:22:48.000Z","version_change":"2.21.2 → 2.21.4","issue":{"uuid":"3945801076","node_id":"PR_kwDOADNk_s7D_3i4","number":5101,"state":"closed","title":"build(deps): bump getsentry/craft from 2.21.2 to 2.21.4","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-02-23T04:27:09.000Z","author_association":null,"state_reason":null,"created_at":"2026-02-16T04:22:48.000Z","updated_at":"2026-02-23T04:27:11.000Z","time_to_close":605061,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.21.2","new_version":"2.21.4","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.21.2 to 2.21.4.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 4.5.3 to 5.3.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/737\"\u003e#737\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.4 to 7.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/736\"\u003e#736\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/906009a1b771956757e521555b561379307eb667\"\u003e\u003ccode\u003e906009a\u003c/code\u003e\u003c/a\u003e release: 2.21.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/84cdfd99cf763cc010db4cfc0c97544bdd2c607c\"\u003e\u003ccode\u003e84cdfd9\u003c/code\u003e\u003c/a\u003e fix(ux): improve error messages for artifact mismatches and missing release b...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/91e1029e0095fdf9575a0c7f026cf9ce13e0a0ec\"\u003e\u003ccode\u003e91e1029\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b978526aa913c47c8b6b1bef62fe8f114dd9b477\"\u003e\u003ccode\u003eb978526\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.3'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5d154a7facb096e38889be2c6caf2fd23649aa92\"\u003e\u003ccode\u003e5d154a7\u003c/code\u003e\u003c/a\u003e release: 2.21.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7f895c51dd1b4f6f35ea06f3dedaeab277d2eb93\"\u003e\u003ccode\u003e7f895c5\u003c/code\u003e\u003c/a\u003e fix(changelog): Tailor preview output to versioning policy (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/749\"\u003e#749\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e\u003ccode\u003e1aa1e5c\u003c/code\u003e\u003c/a\u003e fix: Retract is no more\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5c870b0409447537c106b3931bee4a8770fe6e88\"\u003e\u003ccode\u003e5c870b0\u003c/code\u003e\u003c/a\u003e fix(artifacts): Support glob patterns and validate all configured patterns ma...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3edce69fda2e1fd8e95f1c5dec8385b141b1f9e6\"\u003e\u003ccode\u003e3edce69\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/03f8c7439db7b7c1414217581e3df650602f66f5\"\u003e\u003ccode\u003e03f8c74\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.2'\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/getsentry/craft/compare/63d1636bead951f6e034ed62c2a3610965fef010...906009a1b771956757e521555b561379307eb667\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.21.2\u0026new-version=2.21.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-java/pull/5101","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-java/issues/5101","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5101/packages"}},{"old_version":"2.20.1","new_version":"2.21.4","update_type":"minor","path":null,"pr_created_at":"2026-02-16T03:52:57.000Z","version_change":"2.20.1 → 2.21.4","issue":{"uuid":"3945734438","node_id":"PR_kwDOCDbi-87D_pjU","number":5467,"state":"closed","title":"build(deps): bump getsentry/craft from 2.20.1 to 2.21.4","user":"dependabot[bot]","labels":["Dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":"2026-02-23T03:53:00.000Z","author_association":null,"state_reason":null,"created_at":"2026-02-16T03:52:57.000Z","updated_at":"2026-02-23T03:53:00.000Z","time_to_close":604803,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.20.1","new_version":"2.21.4","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.20.1 to 2.21.4.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 4.5.3 to 5.3.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/737\"\u003e#737\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.4 to 7.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/736\"\u003e#736\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eOther\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eUse correct artifact name for dogfooding by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/742\"\u003e#742\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 4.5.3 to 5.3.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/737\"\u003e#737\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.4 to 7.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/736\"\u003e#736\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/906009a1b771956757e521555b561379307eb667\"\u003e\u003ccode\u003e906009a\u003c/code\u003e\u003c/a\u003e release: 2.21.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/84cdfd99cf763cc010db4cfc0c97544bdd2c607c\"\u003e\u003ccode\u003e84cdfd9\u003c/code\u003e\u003c/a\u003e fix(ux): improve error messages for artifact mismatches and missing release b...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/91e1029e0095fdf9575a0c7f026cf9ce13e0a0ec\"\u003e\u003ccode\u003e91e1029\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b978526aa913c47c8b6b1bef62fe8f114dd9b477\"\u003e\u003ccode\u003eb978526\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.3'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5d154a7facb096e38889be2c6caf2fd23649aa92\"\u003e\u003ccode\u003e5d154a7\u003c/code\u003e\u003c/a\u003e release: 2.21.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7f895c51dd1b4f6f35ea06f3dedaeab277d2eb93\"\u003e\u003ccode\u003e7f895c5\u003c/code\u003e\u003c/a\u003e fix(changelog): Tailor preview output to versioning policy (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/749\"\u003e#749\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e\u003ccode\u003e1aa1e5c\u003c/code\u003e\u003c/a\u003e fix: Retract is no more\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5c870b0409447537c106b3931bee4a8770fe6e88\"\u003e\u003ccode\u003e5c870b0\u003c/code\u003e\u003c/a\u003e fix(artifacts): Support glob patterns and validate all configured patterns ma...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3edce69fda2e1fd8e95f1c5dec8385b141b1f9e6\"\u003e\u003ccode\u003e3edce69\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/03f8c7439db7b7c1414217581e3df650602f66f5\"\u003e\u003ccode\u003e03f8c74\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.2'\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/beea4aba589c66381258cbd131c5551ae8245b82...906009a1b771956757e521555b561379307eb667\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.20.1\u0026new-version=2.21.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-python/pull/5467","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-python/issues/5467","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5467/packages"}},{"old_version":"2.21.2","new_version":"2.21.4","update_type":"patch","path":null,"pr_created_at":"2026-02-13T10:34:37.000Z","version_change":"2.21.2 → 2.21.4","issue":{"uuid":"3936501217","node_id":"PR_kwDODl-XBs7DhYkL","number":1072,"state":"open","title":"build(deps): bump getsentry/craft from 2.21.2 to 2.21.4","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-02-13T10:34:37.000Z","updated_at":"2026-02-13T10:34:55.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.21.2","new_version":"2.21.4","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.21.2 to 2.21.4.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.4\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(ux) Improve error messages for artifact mismatches and missing release branches by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/750\"\u003e#750\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.3\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(artifacts) Support glob patterns and validate all configured patterns match by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/748\"\u003e#748\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(changelog) Tailor preview output to versioning policy by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/749\"\u003e#749\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Retract is no more by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e1aa1e5c1\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 4.5.3 to 5.3.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/737\"\u003e#737\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.4 to 7.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/736\"\u003e#736\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/906009a1b771956757e521555b561379307eb667\"\u003e\u003ccode\u003e906009a\u003c/code\u003e\u003c/a\u003e release: 2.21.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/84cdfd99cf763cc010db4cfc0c97544bdd2c607c\"\u003e\u003ccode\u003e84cdfd9\u003c/code\u003e\u003c/a\u003e fix(ux): improve error messages for artifact mismatches and missing release b...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/91e1029e0095fdf9575a0c7f026cf9ce13e0a0ec\"\u003e\u003ccode\u003e91e1029\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/b978526aa913c47c8b6b1bef62fe8f114dd9b477\"\u003e\u003ccode\u003eb978526\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.3'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5d154a7facb096e38889be2c6caf2fd23649aa92\"\u003e\u003ccode\u003e5d154a7\u003c/code\u003e\u003c/a\u003e release: 2.21.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/7f895c51dd1b4f6f35ea06f3dedaeab277d2eb93\"\u003e\u003ccode\u003e7f895c5\u003c/code\u003e\u003c/a\u003e fix(changelog): Tailor preview output to versioning policy (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/749\"\u003e#749\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/1aa1e5c18fe59a7ac942e9db68adb1d418da91ac\"\u003e\u003ccode\u003e1aa1e5c\u003c/code\u003e\u003c/a\u003e fix: Retract is no more\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5c870b0409447537c106b3931bee4a8770fe6e88\"\u003e\u003ccode\u003e5c870b0\u003c/code\u003e\u003c/a\u003e fix(artifacts): Support glob patterns and validate all configured patterns ma...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/3edce69fda2e1fd8e95f1c5dec8385b141b1f9e6\"\u003e\u003ccode\u003e3edce69\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/03f8c7439db7b7c1414217581e3df650602f66f5\"\u003e\u003ccode\u003e03f8c74\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.2'\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/getsentry/craft/compare/63d1636bead951f6e034ed62c2a3610965fef010...906009a1b771956757e521555b561379307eb667\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.21.2\u0026new-version=2.21.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-android-gradle-plugin/pull/1072","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-android-gradle-plugin/issues/1072","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1072/packages"}},{"old_version":"2.20.1","new_version":"2.21.2","update_type":"minor","path":null,"pr_created_at":"2026-02-09T11:46:08.000Z","version_change":"2.20.1 → 2.21.2","issue":{"uuid":"3915975115","node_id":"PR_kwDODl-XBs7CdiEQ","number":1067,"state":"open","title":"build(deps): bump getsentry/craft from 2.20.1 to 2.21.2","user":"dependabot[bot]","labels":["dependencies","github_actions"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-02-09T11:46:08.000Z","updated_at":"2026-02-09T11:46:31.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps)","packages":[{"name":"getsentry/craft","old_version":"2.20.1","new_version":"2.21.2","repository_url":"https://github.com/getsentry/craft"}],"path":null,"ecosystem":"actions"},"body":"Bumps [getsentry/craft](https://github.com/getsentry/craft) from 2.20.1 to 2.21.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/releases\"\u003egetsentry/craft's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 4.5.3 to 5.3.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/737\"\u003e#737\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.4 to 7.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/736\"\u003e#736\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eOther\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eUse correct artifact name for dogfooding by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/742\"\u003e#742\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRevert legacy artifact naming for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/745\"\u003e#745\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.0\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/craft/blob/master/CHANGELOG.md\"\u003egetsentry/craft's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003ch2\u003e2.21.2\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(targets) Add missing spawnProcess imports in pypi and crates by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/746\"\u003e#746\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd TypeScript type checking to CI by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/747\"\u003e#747\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.21.1\u003c/h2\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate publish issue body when re-running GitHub Action by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/740\"\u003e#740\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd noMerge config option with auto-detection for GitHub Actions by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/739\"\u003e#739\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAutomatic version bumping from configured targets by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/707\"\u003e#707\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure GitHub artifact provider to filter by workflow and name by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/709\"\u003e#709\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Handle permission errors when updating publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/744\"\u003e#744\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(build) Add legacy artifact name for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/743\"\u003e#743\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e(security) Resolve HIGH severity Dependabot alerts by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/741\"\u003e#741\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eDeps Dev\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump fast-xml-parser from 4.5.3 to 5.3.4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/737\"\u003e#737\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump tar from 7.5.4 to 7.5.7 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/736\"\u003e#736\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eOther\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eUse correct artifact name for dogfooding by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/742\"\u003e#742\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRevert legacy artifact naming for backward compatibility by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/745\"\u003e#745\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.20.1\u003c/h2\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(action) Expand changelog by default in publish issues by \u003ca href=\"https://github.com/BYK\"\u003e\u003ccode\u003e@​BYK\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/craft/pull/731\"\u003e#731\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eDocumentation 📚\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/63d1636bead951f6e034ed62c2a3610965fef010\"\u003e\u003ccode\u003e63d1636\u003c/code\u003e\u003c/a\u003e release: 2.21.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/4760b720ba5a642fbf94ce37e6eee4b020029db4\"\u003e\u003ccode\u003e4760b72\u003c/code\u003e\u003c/a\u003e ci: Add TypeScript type checking to CI (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/747\"\u003e#747\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/6816252bdbda12c998560ddb100c80b2c462b804\"\u003e\u003ccode\u003e6816252\u003c/code\u003e\u003c/a\u003e fix(targets): Add missing spawnProcess imports in pypi and crates (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/746\"\u003e#746\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/bd0aa29cff82088e698c5ec8a2ae41c9e6fe73bd\"\u003e\u003ccode\u003ebd0aa29\u003c/code\u003e\u003c/a\u003e meta: Bump new development version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/9bea1bf9aaf5c814af9db72142e9c2f8510ccd16\"\u003e\u003ccode\u003e9bea1bf\u003c/code\u003e\u003c/a\u003e Merge branch 'release/2.21.1'\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/564d9f5a3186fd8685cc17e5fe9c6915531ff98d\"\u003e\u003ccode\u003e564d9f5\u003c/code\u003e\u003c/a\u003e release: 2.21.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/e2bed417223ab8073041c35b70d757c23f01602f\"\u003e\u003ccode\u003ee2bed41\u003c/code\u003e\u003c/a\u003e Revert legacy artifact naming for backward compatibility (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/745\"\u003e#745\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/5037190184533ee93977c639e3a8b1d3531ed656\"\u003e\u003ccode\u003e5037190\u003c/code\u003e\u003c/a\u003e fix(action): Handle permission errors when updating publish issues (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/744\"\u003e#744\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/2bd5eb6e35e6cf22a74f6c868ae17a03b8d58f20\"\u003e\u003ccode\u003e2bd5eb6\u003c/code\u003e\u003c/a\u003e fix(build): Add legacy artifact name for backward compatibility (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/743\"\u003e#743\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/craft/commit/e9fd6aa2d383904b4332421b80a986e91e3917b6\"\u003e\u003ccode\u003ee9fd6aa\u003c/code\u003e\u003c/a\u003e ci: Use correct artifact name for dogfooding (\u003ca href=\"https://redirect.github.com/getsentry/craft/issues/742\"\u003e#742\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/craft/compare/beea4aba589c66381258cbd131c5551ae8245b82...63d1636bead951f6e034ed62c2a3610965fef010\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=getsentry/craft\u0026package-manager=github_actions\u0026previous-version=2.20.1\u0026new-version=2.21.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/getsentry/sentry-android-gradle-plugin/pull/1067","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fsentry-android-gradle-plugin/issues/1067","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1067/packages"}}]}