{"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":234,"first_release_published_at":"2018-06-28T15:07:00.000Z","latest_release_published_at":"2026-05-15T08:53:33.000Z","latest_release_number":"2.26.5","last_synced_at":"2026-05-22T20:02:18.014Z","created_at":"2026-01-16T13:58:29.130Z","updated_at":"2026-05-22T20:02:18.014Z","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 (may be truncated for large repos)","value":"${{ steps.craft.outputs.changelog }}"},"changelog_file":{"description":"Path to the full changelog file (available when running in GitHub Actions)","value":"${{ steps.craft.outputs.changelog_file }}"},"issue_url":{"description":"The URL of the created publish request issue","value":"${{ steps.request-publish.outputs.issue_url }}"}},"runs":{"using":"composite","steps":[{"id":"killswitch","name":"Check release blockers","shell":"bash","env":{"FORCE_INPUT":"${{ inputs.force }}","BLOCKER_LABEL_INPUT":"${{ inputs.blocker_label }}"},"run":"if [[ \"$FORCE_INPUT\" != 'true' ]] \u0026\u0026 gh issue list -l \"$BLOCKER_LABEL_INPUT\" -s open | grep -q '^[0-9]\\+[[:space:]]'; then\n  echo \"::error::Open release-blocking issues found (label: $BLOCKER_LABEL_INPUT), cancelling release...\"\n  gh api -X POST repos/:owner/:repo/actions/runs/$GITHUB_RUN_ID/cancel\nfi\n"},{"name":"Set git user","shell":"bash","env":{"GIT_USER_NAME":"${{ inputs.git_user_name || github.actor }}","GIT_USER_EMAIL":"${{ inputs.git_user_email || format('{0}+{1}@users.noreply.github.com', github.actor_id, github.actor) }}"},"run":"echo \"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@v8","with":{"name":"craft-binary","path":"/tmp/craft-artifact"}},{"name":"Install Craft from artifact or release","shell":"bash","env":{"CRAFT_VERSION_INPUT":"${{ inputs.craft_version }}","ACTION_REF":"${{ github.action_ref }}"},"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 ACTION_REF\n  CRAFT_VERSION=\"$CRAFT_VERSION_INPUT\"\n  if [[ -z \"$CRAFT_VERSION\" ]]; then\n    CRAFT_VERSION=\"$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","CRAFT_CONFIG_FROM_MERGE_TARGET":"${{ inputs.craft_config_from_merge_target }}","MERGE_TARGET":"${{ inputs.merge_target }}","VERSION":"${{ inputs.version }}"},"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 [[ \"$CRAFT_CONFIG_FROM_MERGE_TARGET\" == 'true' \u0026\u0026 -n \"$MERGE_TARGET\" ]]; then\n  CRAFT_ARGS=(--config-from \"$MERGE_TARGET\")\nfi\n\n# Version is optional - if not provided, Craft uses versioning.policy from config\nVERSION_ARG=()\nif [[ -n \"$VERSION\" ]]; then\n  VERSION_ARG=(\"$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","id":"request-publish","shell":"bash","env":{"CHANGELOG_FILE":"${{ steps.craft.outputs.changelog_file }}","TARGETS":"${{ steps.craft-targets.outputs.targets }}","RESOLVED_VERSION":"${{ steps.craft.outputs.version }}","RELEASE_BRANCH":"${{ steps.craft.outputs.branch }}","RELEASE_SHA":"${{ steps.craft.outputs.sha }}","RELEASE_PREVIOUS_TAG":"${{ steps.craft.outputs.previous_tag || 'HEAD' }}","SUBDIRECTORY":"${{ inputs.path != '.' \u0026\u0026 format('/{0}', inputs.path) || '' }}","MERGE_TARGET":"${{ inputs.merge_target || '(default)' }}","PUBLISH_REPO":"${{ inputs.publish_repo || format('{0}/publish', github.repository_owner) }}"},"run":"# Resolve \"self\" to the current repository\nif [[ \"$PUBLISH_REPO\" == \"self\" ]]; then\n  PUBLISH_REPO=\"$GITHUB_REPOSITORY\"\nfi\n\nif [[ -z \"$RESOLVED_VERSION\" ]]; then\n  echo \"::error::Craft did not output a version. This is unexpected.\"\n  exit 1\nfi\n\n# Read changelog from file to avoid E2BIG.\n# Produced by craft \u003e= 2.22.0; older versions don't produce the file\n# and the publish issue will be created without a changelog section.\nCHANGELOG=\"\"\nif [[ -n \"${CHANGELOG_FILE:-}\" \u0026\u0026 -f \"$CHANGELOG_FILE\" ]]; then\n  CHANGELOG=$(cat \"$CHANGELOG_FILE\")\nfi\n\n# GitHub issue bodies are limited to ~65 536 characters.  Truncate\n# the changelog to stay under that limit with room for the rest of\n# the body template (~2 KB of surrounding markdown).\nMAX_CHANGELOG_CHARS=60000\nif [[ ${#CHANGELOG} -gt $MAX_CHANGELOG_CHARS ]]; then\n  CHANGELOG=\"${CHANGELOG:0:$MAX_CHANGELOG_CHARS}\"$'\\n\\n---\\n*Changelog truncated for issue body.*'\nfi\n\ntitle=\"publish: ${GITHUB_REPOSITORY}${SUBDIRECTORY}@${RESOLVED_VERSION}\"\n\n# Check if issue already exists by listing all open issues and filtering by exact title match.\n# We avoid GitHub search API to bypass indexing delays and query syntax edge cases.\n# gh issue list returns issues sorted by creation date (most recent first), so we take\n# the first match to handle the theoretical case of duplicate titles.\nexisting_issue=$(gh -R \"$PUBLISH_REPO\" issue list --json title,url,number,body | jq -r --arg t \"$title\" '[.[] | select(.title == $t)] | first // empty')\nexisting_issue_url=\"\"\nexisting_issue_number=\"\"\nexisting_body=\"\"\nif [[ -n \"$existing_issue\" ]]; then\n  existing_issue_url=$(echo \"$existing_issue\" | jq -r '.url')\n  existing_issue_number=$(echo \"$existing_issue\" | jq -r '.number')\n  existing_body=$(echo \"$existing_issue\" | jq -r '.body')\nfi\n\n# Extract checked targets from the existing body.\n# Targets appear as \" - [x] targetName\" or \" - [X] targetName\" in markdown.\n# We only look within the \"### Targets\" section to avoid matching checkboxes in the changelog.\n# We store them in an associative array for O(1) lookup when rebuilding targets.\ndeclare -A checked_targets\nif [[ -n \"$existing_body\" ]]; then\n  # Extract only the Targets section (between \"### Targets\" and \"Checked targets will be skipped\")\n  targets_section=$(echo \"$existing_body\" | sed -n '/### Targets/,/Checked targets will be skipped/p')\n  while IFS= read -r target; do\n    [[ -n \"$target\" ]] \u0026\u0026 checked_targets[\"$target\"]=1\n  done \u003c \u003c(echo \"$targets_section\" | grep -oE '^\\s*-\\s*\\[[xX]\\]\\s+\\S+' | sed 's/.*\\[[xX]\\][[:space:]]*//')\nfi\n\n# Apply preserved checked states to the new targets list.\n# For each target in the new list, check if it was marked as checked in the original.\nif [[ ${#checked_targets[@]} -gt 0 ]]; then\n  new_targets=\"\"\n  while IFS= read -r line; do\n    # Extract target name from \" - [ ] targetName\" format\n    target_name=$(echo \"$line\" | sed 's/.*\\[ \\][[:space:]]*//')\n    if [[ -n \"$target_name\" \u0026\u0026 -n \"${checked_targets[$target_name]+x}\" ]]; then\n      # This target was checked in the original, preserve that state\n      line=$(echo \"$line\" | sed 's/\\[ \\]/[x]/')\n    fi\n    new_targets+=\"${line}\"$'\\n'\n  done \u003c\u003c\u003c \"$TARGETS\"\n  # Remove trailing newline\n  TARGETS=\"${new_targets%$'\\n'}\"\nfi\n\n# Build changelog section if available\nif [[ -n \"$CHANGELOG\" ]]; then\n  CHANGELOG_SECTION=\"\n---\n\n\u003cdetails open\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/${RELEASE_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.\n\n### Targets\n\n${TARGETS}\n\nChecked targets will be skipped (either already published or user-requested skip). Uncheck to retry a target.\n${CHANGELOG_SECTION}\"\n\nif [[ -n \"$existing_issue_number\" ]]; then\n  # Try to update existing issue with fresh body (preserving checked target states)\n  # This may fail if the token doesn't have permission to update issues in the publish repo\n  if gh issue edit \"$existing_issue_number\" -R \"$PUBLISH_REPO\" --body \"$body\" 2\u003e/dev/null; then\n    echo \"::notice::Updated existing publish request: ${existing_issue_url}\"\n  else\n    echo \"::warning::Could not update existing issue (permission denied). Using existing issue as-is.\"\n  fi\n  echo \"issue_url=${existing_issue_url}\" \u003e\u003e \"$GITHUB_OUTPUT\"\nelse\n  # Create new issue\n  issue_url=$(gh issue create -R \"$PUBLISH_REPO\" --title \"$title\" --body \"$body\")\n  echo \"::notice::Created publish request: ${issue_url}\"\n  echo \"issue_url=${issue_url}\" \u003e\u003e \"$GITHUB_OUTPUT\"\nfi\n"}]},"default_branch":"master","path":null},"repo_metadata":{"id":39850948,"uuid":"137485248","full_name":"getsentry/craft","owner":"getsentry","description":"The universal Sentry release CLI  🚀","archived":false,"fork":false,"pushed_at":"2026-05-22T12:03:07.000Z","size":10436,"stargazers_count":182,"open_issues_count":28,"forks_count":20,"subscribers_count":44,"default_branch":"master","last_synced_at":"2026-05-22T16:49:15.897Z","etag":null,"topics":["cli","craft","google-cloud-storage","npm","nuget","packaging","pypi","release-automation","rust-crate","sentry","sentry-release-registry","tag-production","typescript"],"latest_commit_sha":null,"homepage":"https://getsentry.github.io/craft/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/getsentry.png","metadata":{"funding":{"custom":["https://sentry.io/pricing/","https://sentry.io/"]},"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2018-06-15T12:30:25.000Z","updated_at":"2026-05-22T10:15:45.000Z","dependencies_parsed_at":"2026-02-11T21:03:12.182Z","dependency_job_id":null,"html_url":"https://github.com/getsentry/craft","commit_stats":{"total_commits":787,"total_committers":33,"mean_commits":"23.848484848484848","dds":0.6416772554002541,"last_synced_commit":"3a136a5dbd40e9b2e7fe7ae7799cfbf71784108e"},"previous_names":[],"tags_count":234,"template":false,"template_full_name":null,"purl":"pkg:github/getsentry/craft","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/getsentry","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/sbom","scorecard":{"id":424586,"data":{"date":"2025-08-11","repo":{"name":"github.com/getsentry/craft","commit":"1397609d89066eeff0a818aac448f1e0ec5a855e"},"scorecard":{"version":"v5.2.1-40-gf6ed084d","commit":"f6ed084d17c9236477efd66e5b258b9d4cc7b389"},"score":6.3,"checks":[{"name":"Code-Review","score":3,"reason":"Found 9/27 approved changesets -- score normalized to 3","details":null,"documentation":{"short":"Determines if the project requires human code review before pull requests (aka merge requests) are merged.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#code-review"}},{"name":"Token-Permissions","score":7,"reason":"detected GitHub workflow tokens with excessive permissions","details":["Info: jobLevel 'contents' permission set to 'read': .github/workflows/build.yml:13","Info: jobLevel 'contents' permission set to 'read': .github/workflows/build.yml:39","Info: jobLevel 'contents' permission set to 'read': .github/workflows/enforce-license-compliance.yml:13","Info: jobLevel 'contents' permission set to 'read': .github/workflows/image.yml:12","Info: jobLevel 'contents' permission set to 'read': .github/workflows/lint.yml:11","Warn: jobLevel 'contents' permission set to 'write': .github/workflows/release.yml:16","Warn: no topLevel permission defined: .github/workflows/build.yml:1","Warn: no topLevel permission defined: .github/workflows/enforce-license-compliance.yml:1","Warn: no topLevel permission defined: .github/workflows/image.yml:1","Warn: no topLevel permission defined: .github/workflows/lint.yml:1","Warn: no topLevel permission defined: .github/workflows/release.yml:1"],"documentation":{"short":"Determines if the project's workflows follow the principle of least privilege.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#token-permissions"}},{"name":"Dangerous-Workflow","score":10,"reason":"no dangerous workflow patterns detected","details":null,"documentation":{"short":"Determines if the project's GitHub Action workflows avoid dangerous patterns.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#dangerous-workflow"}},{"name":"Maintained","score":10,"reason":"25 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10","details":null,"documentation":{"short":"Determines if the project is \"actively maintained\".","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#maintained"}},{"name":"Binary-Artifacts","score":10,"reason":"no binaries found in the repo","details":null,"documentation":{"short":"Determines if the project has generated executable (binary) artifacts in the source repository.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#binary-artifacts"}},{"name":"CII-Best-Practices","score":0,"reason":"no effort to earn an OpenSSF best practices badge detected","details":null,"documentation":{"short":"Determines if the project has an OpenSSF (formerly CII) Best Practices Badge.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#cii-best-practices"}},{"name":"License","score":10,"reason":"license file detected","details":["Info: project has a license file: LICENSE:0","Info: FSF or OSI recognized license: MIT License: LICENSE:0"],"documentation":{"short":"Determines if the project has defined a license.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#license"}},{"name":"Fuzzing","score":0,"reason":"project is not fuzzed","details":["Warn: no fuzzer integrations found"],"documentation":{"short":"Determines if the project uses fuzzing.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#fuzzing"}},{"name":"Pinned-Dependencies","score":5,"reason":"dependency not pinned by hash detected -- score normalized to 5","details":["Warn: containerImage not pinned by hash: Dockerfile:1","Warn: containerImage not pinned by hash: Dockerfile:18: pin your Docker image by updating node:22-bookworm to node:22-bookworm@sha256:3266bc9e8bee1acc8a77386eefaf574987d2729b8c5ec35b0dbd6ddbc40b0ce2","Warn: pipCommand not pinned by hash: Dockerfile:49","Warn: downloadThenRun not pinned by hash: Dockerfile:51-88","Info:  13 out of  13 GitHub-owned GitHubAction dependencies pinned","Info:   2 out of   2 third-party GitHubAction dependencies pinned","Info:   0 out of   1 pipCommand dependencies pinned","Info:   0 out of   1 downloadThenRun dependencies pinned","Info:   0 out of   2 containerImage dependencies pinned"],"documentation":{"short":"Determines if the project has declared and pinned the dependencies of its build process.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#pinned-dependencies"}},{"name":"Signed-Releases","score":0,"reason":"Project has not signed or included provenance with any releases.","details":["Warn: release artifact 2.9.1 not signed: https://api.github.com/repos/getsentry/craft/releases/235767617","Warn: release artifact 2.9.0 not signed: https://api.github.com/repos/getsentry/craft/releases/234174029","Warn: release artifact 2.8.0 not signed: https://api.github.com/repos/getsentry/craft/releases/229773583","Warn: release artifact 2.7.2 not signed: https://api.github.com/repos/getsentry/craft/releases/228763580","Warn: release artifact 2.7.1 not signed: https://api.github.com/repos/getsentry/craft/releases/224849748","Warn: release artifact 2.9.1 does not have provenance: https://api.github.com/repos/getsentry/craft/releases/235767617","Warn: release artifact 2.9.0 does not have provenance: https://api.github.com/repos/getsentry/craft/releases/234174029","Warn: release artifact 2.8.0 does not have provenance: https://api.github.com/repos/getsentry/craft/releases/229773583","Warn: release artifact 2.7.2 does not have provenance: https://api.github.com/repos/getsentry/craft/releases/228763580","Warn: release artifact 2.7.1 does not have provenance: https://api.github.com/repos/getsentry/craft/releases/224849748"],"documentation":{"short":"Determines if the project cryptographically signs release artifacts.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#signed-releases"}},{"name":"Security-Policy","score":10,"reason":"security policy file detected","details":["Info: security policy file detected: github.com/getsentry/.github/SECURITY.md:1","Info: Found linked content: github.com/getsentry/.github/SECURITY.md:1","Info: Found disclosure, vulnerability, and/or timelines in security policy: github.com/getsentry/.github/SECURITY.md:1","Info: Found text in security policy: github.com/getsentry/.github/SECURITY.md:1"],"documentation":{"short":"Determines if the project has published a security policy.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#security-policy"}},{"name":"Branch-Protection","score":4,"reason":"branch protection is not maximal on development and all release branches","details":["Info: 'allow deletion' disabled on branch 'master'","Info: 'force pushes' disabled on branch 'master'","Warn: 'branch protection settings apply to administrators' is disabled on branch 'master'","Warn: 'stale review dismissal' is disabled on branch 'master'","Warn: required approving review count is 1 on branch 'master'","Warn: codeowners review is not required on branch 'master'","Warn: 'last push approval' is disabled on branch 'master'","Warn: 'up-to-date branches' is disabled on branch 'master'","Info: status check found to merge onto on branch 'master'","Info: PRs are required in order to make changes on branch 'master'"],"documentation":{"short":"Determines if the default and release branches are protected with GitHub's branch protection settings.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#branch-protection"}},{"name":"Packaging","score":10,"reason":"packaging workflow detected","details":["Info: Project packages its releases by way of GitHub Actions.: .github/workflows/image.yml:9"],"documentation":{"short":"Determines if the project is published as a package that others can easily download, install, easily update, and uninstall.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#packaging"}},{"name":"Vulnerabilities","score":4,"reason":"6 existing vulnerabilities detected","details":["Warn: Project is vulnerable to: GHSA-968p-4wvh-cqc8","Warn: Project is vulnerable to: GHSA-h5c3-5r3r-rr8q","Warn: Project is vulnerable to: GHSA-rmvr-2pp2-xj38","Warn: Project is vulnerable to: GHSA-xx4v-prfh-6cgc","Warn: Project is vulnerable to: GHSA-v6h2-p8h4-qcjw","Warn: Project is vulnerable to: GHSA-pxg6-pf52-xh8x"],"documentation":{"short":"Determines if the project has open, known unfixed vulnerabilities.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#vulnerabilities"}},{"name":"SAST","score":9,"reason":"SAST tool is not run on all commits -- score normalized to 9","details":["Warn: 11 commits out of 12 are checked with a SAST tool"],"documentation":{"short":"Determines if the project uses static code analysis.","url":"https://github.com/ossf/scorecard/blob/f6ed084d17c9236477efd66e5b258b9d4cc7b389/docs/checks.md#sast"}}]},"last_synced_at":"2025-08-19T01:58:13.257Z","repository_id":39850948,"created_at":"2025-08-19T01:58:13.258Z","updated_at":"2025-08-19T01:58:13.258Z"},"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33364331,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-21T12:23:38.849Z","status":"online","status_checked_at":"2026-05-22T02:00:06.671Z","response_time":265,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"getsentry","name":"Sentry","uuid":"1396951","kind":"organization","description":"Real-time crash reporting for your web apps, mobile apps, and games.","email":"support@sentry.io","website":"https://sentry.io","location":"United States of America","twitter":"getsentry","company":null,"icon_url":"https://avatars.githubusercontent.com/u/1396951?v=4","repositories_count":696,"last_synced_at":"2025-10-19T07:22:08.795Z","metadata":{"has_sponsors_listing":false,"funding":{"custom":["https://sentry.io/pricing/","https://sentry.io/"]}},"html_url":"https://github.com/getsentry","funding_links":["https://sentry.io/pricing/","https://sentry.io/"],"total_stars":98992,"followers":2575,"following":0,"created_at":"2022-11-02T16:22:50.307Z","updated_at":"2025-10-19T07:22:08.795Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/getsentry","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/getsentry/repositories"},"tags":[{"name":"2.26.5","sha":"bc2e6a9952e62250e5469d5a853a7a438692ccc1","kind":"commit","published_at":"2026-05-15T08:53:33.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.26.5","html_url":"https://github.com/getsentry/craft/releases/tag/2.26.5","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.26.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.26.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.26.5/manifests"},{"name":"2.26.4","sha":"70714dda896a3f5d5ad0a3e55b1d73a64ee7bf8f","kind":"commit","published_at":"2026-05-14T18:03:52.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.26.4","html_url":"https://github.com/getsentry/craft/releases/tag/2.26.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.26.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.26.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.26.4/manifests"},{"name":"2.26.3","sha":"bae212ca7aec50bb716eafd387c80bcfb28da937","kind":"commit","published_at":"2026-05-05T14:10:57.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.26.3","html_url":"https://github.com/getsentry/craft/releases/tag/2.26.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.26.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.26.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.26.3/manifests"},{"name":"2.26.2","sha":"3dc647fee3586e57c7c31eb900fdec7cbb44f23f","kind":"commit","published_at":"2026-04-23T12:12:46.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.26.2","html_url":"https://github.com/getsentry/craft/releases/tag/2.26.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.26.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.26.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.26.2/manifests"},{"name":"2.26.1","sha":"c248b38be4dbcdb95ba538f39a2336d7dd12b9f7","kind":"commit","published_at":"2026-04-22T20:41:20.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.26.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.26.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.26.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.26.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.26.1/manifests"},{"name":"2.26.0","sha":"2d78918ece86d970404ccaa029735cb5dce1901b","kind":"commit","published_at":"2026-04-21T19:59:56.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.26.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.26.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.26.0/manifests"},{"name":"2.25.5","sha":"cdc6127f84ebbad92bd4dbf11f1e6dd4129590ab","kind":"commit","published_at":"2026-04-21T16:29:38.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.25.5","html_url":"https://github.com/getsentry/craft/releases/tag/2.25.5","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.25.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.25.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.25.5/manifests"},{"name":"2.25.4","sha":"97d0c4286f32a80d09c8b89366d762fecc3e27b6","kind":"commit","published_at":"2026-04-17T09:20:53.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.25.4","html_url":"https://github.com/getsentry/craft/releases/tag/2.25.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.25.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.25.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.25.4/manifests"},{"name":"2.25.3","sha":"9a8e27a89529970cc0f241c6b77fdcbc32838c03","kind":"commit","published_at":"2026-04-14T13:27:44.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.25.3","html_url":"https://github.com/getsentry/craft/releases/tag/2.25.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.25.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.25.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.25.3/manifests"},{"name":"2.25.2","sha":"ba01e596c4a4c07692f0de10b0d4fe05f3dd0292","kind":"commit","published_at":"2026-03-27T13:48:52.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.25.2","html_url":"https://github.com/getsentry/craft/releases/tag/2.25.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.25.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.25.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.25.2/manifests"},{"name":"2.25.1","sha":"14aca37e23aa6d8239a4013cae86d3bae4b4e0cd","kind":"commit","published_at":"2026-03-25T23:38:40.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.25.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.25.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.25.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.25.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.25.1/manifests"},{"name":"2.25.0","sha":"f4889d04564e47311038ecb6b910fef6b6cf1363","kind":"commit","published_at":"2026-03-20T12:37:53.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.25.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.25.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.25.0/manifests"},{"name":"2.24.2","sha":"78da70b88de5cf6245d5d7e3263a9e8952667dec","kind":"commit","published_at":"2026-03-16T10:37:10.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.24.2","html_url":"https://github.com/getsentry/craft/releases/tag/2.24.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.24.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.24.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.24.2/manifests"},{"name":"2.24.1","sha":"013a7b2113c2cac0ff32d5180cfeaefc7c9ce5b6","kind":"commit","published_at":"2026-03-11T17:24:32.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.24.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.24.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.24.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.24.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.24.1/manifests"},{"name":"2.24.0","sha":"41c598a46bba929ea51a3923e1117a4a13b619a2","kind":"commit","published_at":"2026-03-10T14:12:40.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.24.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.24.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.24.0/manifests"},{"name":"2.23.2","sha":"d630201930c7fe5aee6366ebee19ebb681128512","kind":"commit","published_at":"2026-03-05T12:58:06.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.23.2","html_url":"https://github.com/getsentry/craft/releases/tag/2.23.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.23.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.23.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.23.2/manifests"},{"name":"2.23.1","sha":"d4cfac9d25d1fc72c9241e5d22aff559a114e4e9","kind":"commit","published_at":"2026-02-27T19:33:53.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.23.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.23.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.23.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.23.1/manifests"},{"name":"2.23.0","sha":"ce288193e2ac7976b0ffd1d5733527605e6fd63b","kind":"commit","published_at":"2026-02-27T16:04:59.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.23.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.23.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.23.0/manifests"},{"name":"2.22.0","sha":"1db39410d293a253e6affbe98c8c6f29db6e218d","kind":"commit","published_at":"2026-02-27T11:43:17.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.22.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.22.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.22.0/manifests"},{"name":"2.21.7","sha":"41defb379de52e5f0e3943944fa5575b22fb9f92","kind":"commit","published_at":"2026-02-20T11:53:02.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.21.7","html_url":"https://github.com/getsentry/craft/releases/tag/2.21.7","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.21.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.7/manifests"},{"name":"2.21.6","sha":"ba4115c4f37e5e82d57e7a59256568d0418ac725","kind":"commit","published_at":"2026-02-17T21:37:48.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.21.6","html_url":"https://github.com/getsentry/craft/releases/tag/2.21.6","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.21.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.6/manifests"},{"name":"2.21.5","sha":"5cabbe7d6ae3730788393284d5071969d9309753","kind":"commit","published_at":"2026-02-17T01:12:39.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.21.5","html_url":"https://github.com/getsentry/craft/releases/tag/2.21.5","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.21.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.5/manifests"},{"name":"2.21.4","sha":"906009a1b771956757e521555b561379307eb667","kind":"commit","published_at":"2026-02-12T11:54:15.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.21.4","html_url":"https://github.com/getsentry/craft/releases/tag/2.21.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.21.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.4/manifests"},{"name":"2.21.3","sha":"5d154a7facb096e38889be2c6caf2fd23649aa92","kind":"commit","published_at":"2026-02-11T18:57:12.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.21.3","html_url":"https://github.com/getsentry/craft/releases/tag/2.21.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.21.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.3/manifests"},{"name":"2.21.2","sha":"63d1636bead951f6e034ed62c2a3610965fef010","kind":"commit","published_at":"2026-02-07T12:09:49.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.21.2","html_url":"https://github.com/getsentry/craft/releases/tag/2.21.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.21.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.2/manifests"},{"name":"2.21.1","sha":"564d9f5a3186fd8685cc17e5fe9c6915531ff98d","kind":"commit","published_at":"2026-02-06T18:32:22.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.21.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.21.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.21.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.1/manifests"},{"name":"2.21.0","sha":"f3584451ec33db4d1519f15f30d3e94912885d33","kind":"commit","published_at":"2026-02-06T18:12:05.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.21.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.21.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.21.0/manifests"},{"name":"2.20.1","sha":"beea4aba589c66381258cbd131c5551ae8245b82","kind":"commit","published_at":"2026-01-28T20:05:57.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.20.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.20.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.20.1/manifests"},{"name":"2.20.0","sha":"fd370d4d54bec9ff07f909d88a3c4aec6f0ba22b","kind":"commit","published_at":"2026-01-22T09:12:15.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.20.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.20.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.20.0/manifests"},{"name":"2.19.0","sha":"c6e2f04939b6ee67030588afbb5af76b127d8203","kind":"commit","published_at":"2026-01-14T11:38:31.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.19.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.19.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.19.0/manifests"},{"name":"2.18.3","sha":"1c58bfd57bfd6a967b6f3fc92bead2c42ee698ce","kind":"commit","published_at":"2026-01-12T21:15:01.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.18.3","html_url":"https://github.com/getsentry/craft/releases/tag/2.18.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.18.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.18.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.18.3/manifests"},{"name":"2.18.2","sha":"fb46f5f4da1b51e09bc3cd2496493f756acacaac","kind":"commit","published_at":"2026-01-12T20:13:45.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.18.2","html_url":"https://github.com/getsentry/craft/releases/tag/2.18.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.18.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.18.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.18.2/manifests"},{"name":"2.18.1","sha":"39ee616a6a58dc64797feecb145d66770492b66c","kind":"commit","published_at":"2026-01-09T23:04:46.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.18.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.18.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.18.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.18.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.18.1/manifests"},{"name":"2.18.0","sha":"8ae39c709279f4ce66f7a8fb09e594eff5697038","kind":"commit","published_at":"2026-01-09T16:55:57.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.18.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.18.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.18.0/manifests"},{"name":"2.17.0","sha":"14c55305313b45d705062ddc5fade5fa2ccd2bcd","kind":"commit","published_at":"2026-01-02T11:22:28.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.17.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.17.0/manifests"},{"name":"2.16.0","sha":"ca7f270462ae1115a03bb55bdfd11ecb318646c0","kind":"commit","published_at":"2025-12-29T14:18:25.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.16.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.16.0/manifests"},{"name":"v2","sha":"93e9ed70a3e7ab719ae14c8647a0e09a9ff52d52","kind":"commit","published_at":"2025-12-29T08:50:00.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/v2","html_url":"https://github.com/getsentry/craft/releases/tag/v2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@v2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/v2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/v2/manifests"},{"name":"2.15.0","sha":"204f7e3577e06c243423569497eeccfa5eb29da9","kind":"commit","published_at":"2025-12-24T00:10:16.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.15.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.15.0/manifests"},{"name":"2.14.1","sha":"114a419301b8f047629567f8cdf2c1d902581ce7","kind":"commit","published_at":"2025-12-23T20:19:30.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.14.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.14.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.14.1/manifests"},{"name":"2.14.0","sha":"8c1d5d40c99e031f7e2340f71c2c7197d9cfdb31","kind":"commit","published_at":"2025-12-23T13:49:21.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.14.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.14.0/manifests"},{"name":"2.13.1","sha":"164a26dea1dae5ab562671b7a1822461f358fa96","kind":"commit","published_at":"2025-12-09T16:18:52.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.13.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.13.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.13.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.13.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.13.1/manifests"},{"name":"2.13.0","sha":"2a59d5b99c32a6c964af367b5bc562d3caf22306","kind":"commit","published_at":"2025-12-09T12:45:39.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.13.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.13.0/manifests"},{"name":"2.12.1","sha":"79b656e47c780a45cf6e012c13151ec877af32f8","kind":"commit","published_at":"2025-12-01T19:44:16.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.12.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.12.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.12.1/manifests"},{"name":"2.12.0","sha":"0a87ebc20e66ea993361da7e0d29f40184f325fd","kind":"commit","published_at":"2025-12-01T13:42:48.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.12.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.12.0/manifests"},{"name":"2.11.2","sha":"15fb37b2a1672174422bfbfab881023141e65c59","kind":"commit","published_at":"2025-11-28T15:20:02.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.11.2","html_url":"https://github.com/getsentry/craft/releases/tag/2.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.11.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.11.2/manifests"},{"name":"2.11.1","sha":"55c03168e37b807620280a72e8d18d205bc4f45b","kind":"commit","published_at":"2025-11-26T14:28:33.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.11.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.11.1/manifests"},{"name":"2.11.0","sha":"621966138d5dda6bf03f22a4ca75a752aee88c6a","kind":"commit","published_at":"2025-11-25T14:48:46.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.11.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.11.0/manifests"},{"name":"2.10.1","sha":"ac9fbec4051f93d29a92162100bac8d9b9a3be98","kind":"commit","published_at":"2025-10-30T04:30:12.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.10.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.10.1/manifests"},{"name":"2.10.0","sha":"1124528c0ddfffd31ca6a0cc8fa645f8ebb59dc9","kind":"commit","published_at":"2025-10-15T18:19:39.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.10.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.10.0/manifests"},{"name":"2.9.1","sha":"aae1c7748785ff411983abfd2f225444ff45b40f","kind":"commit","published_at":"2025-07-28T20:23:56.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.9.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.9.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.9.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.9.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.9.1/manifests"},{"name":"2.9.0","sha":"34a9611fd45161f2bb75229984a2a2e0f97895e3","kind":"commit","published_at":"2025-07-22T08:25:09.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.9.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.9.0/manifests"},{"name":"2.8.0","sha":"0d84432d6fbe8dc0e2a8777eb1cf43fc2b27243d","kind":"commit","published_at":"2025-07-03T15:00:04.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.8.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.8.0/manifests"},{"name":"2.7.2","sha":"e6272031ac285dc7051458becfc59be3aaa3d4ab","kind":"commit","published_at":"2025-06-30T12:07:17.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.7.2","html_url":"https://github.com/getsentry/craft/releases/tag/2.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.7.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.7.2/manifests"},{"name":"2.7.1","sha":"64fc12c958b7ca3b1d10f73b4ebd4f0b900a497a","kind":"commit","published_at":"2025-06-12T09:59:52.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.7.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.7.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.7.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.7.1/manifests"},{"name":"2.7.0","sha":"0571eda7e6d8cd6ced7a0a22a433528422f54716","kind":"commit","published_at":"2025-05-02T13:24:17.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.7.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.7.0/manifests"},{"name":"2.6.0","sha":"27ec685629c658c66cfbd07eb162dc9f3f3b2656","kind":"commit","published_at":"2025-03-25T14:16:55.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.6.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.6.0/manifests"},{"name":"2.5.1","sha":"f7c397609f9e2b1c431f743d05b380e99a140354","kind":"commit","published_at":"2025-03-21T13:03:05.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.5.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.5.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.5.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.5.1/manifests"},{"name":"2.5.0","sha":"dd77fe8e1020bcded1956375a382010b333d586d","kind":"commit","published_at":"2025-03-20T16:57:29.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.5.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.5.0/manifests"},{"name":"2.4.2","sha":"9bb5462a534818184a00d6f389c2faee8873ed00","kind":"commit","published_at":"2025-02-20T22:14:15.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.4.2","html_url":"https://github.com/getsentry/craft/releases/tag/2.4.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.4.2/manifests"},{"name":"2.4.1","sha":"d0a5e49f9f2638f847d2e72600e92dc60b6c29c8","kind":"commit","published_at":"2025-02-20T22:00:31.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.4.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.4.1/manifests"},{"name":"2.3.8","sha":"12577c0bc5ec3a9a4af7b835133db77349ce5839","kind":"commit","published_at":"2025-02-20T20:27:25.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.3.8","html_url":"https://github.com/getsentry/craft/releases/tag/2.3.8","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.3.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.8/manifests"},{"name":"2.3.5","sha":"e32a22f80e37d45444a394ee2f81a38c2299d251","kind":"commit","published_at":"2025-02-20T18:37:43.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.3.5","html_url":"https://github.com/getsentry/craft/releases/tag/2.3.5","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.3.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.5/manifests"},{"name":"2.3.4","sha":"7de9762c328d37471492f6cde2de2bb8be7b9c20","kind":"commit","published_at":"2025-01-28T07:15:01.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.3.4","html_url":"https://github.com/getsentry/craft/releases/tag/2.3.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.3.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.4/manifests"},{"name":"2.3.3","sha":"00bbca8b0b710e2ed757a793f34de1a4297ac1db","kind":"commit","published_at":"2025-01-22T15:17:59.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.3.3","html_url":"https://github.com/getsentry/craft/releases/tag/2.3.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.3.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.3/manifests"},{"name":"2.3.2","sha":"df57f20d1a3d1843f211ba1da0c82ac9a0302b85","kind":"commit","published_at":"2025-01-22T10:37:48.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.3.2","html_url":"https://github.com/getsentry/craft/releases/tag/2.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.3.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.2/manifests"},{"name":"2.3.1","sha":"55c49fe5d492e8622bd633ae1b231a7481c3eb89","kind":"commit","published_at":"2024-12-13T13:45:31.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.3.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.3.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.3.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.1/manifests"},{"name":"2.3.0","sha":"a2802cb4d65161301e2f774d203466395d9d66e5","kind":"commit","published_at":"2024-12-11T15:33:51.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.3.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.3.0/manifests"},{"name":"2.2.1","sha":"21c08f5789ad70960bb1d4411937c233c8574818","kind":"commit","published_at":"2024-11-22T10:43:25.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.2.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.2.1/manifests"},{"name":"2.2.0","sha":"0a12e2df20c8fbe107f05ec26741bc0f28f184c6","kind":"commit","published_at":"2024-11-19T23:37:32.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.2.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.2.0/manifests"},{"name":"2.1.1","sha":"85867431204d331c0253a62cac6edd3840549f32","kind":"commit","published_at":"2024-10-28T19:11:32.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.1.1","html_url":"https://github.com/getsentry/craft/releases/tag/2.1.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.1.1/manifests"},{"name":"2.1.0","sha":"7a0bd1e1f720eaebb51104e214c65bd27d7751e2","kind":"commit","published_at":"2024-10-17T16:41:14.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.1.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.1.0/manifests"},{"name":"2.0.0","sha":"297938a73ccca79805deb9f43436e691f208dfa9","kind":"commit","published_at":"2024-09-26T14:06:17.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/2.0.0","html_url":"https://github.com/getsentry/craft/releases/tag/2.0.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@2.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/2.0.0/manifests"},{"name":"1.22.0","sha":"d2c50a693c7926714a6c9b4a588ac61b9e2fa5cc","kind":"commit","published_at":"2024-08-08T13:04:18.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.22.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.22.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.22.0/manifests"},{"name":"1.21.0","sha":"6892ae1d9820e599211383f12d9abac60ee6f2a8","kind":"commit","published_at":"2024-07-02T21:15:25.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.21.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.21.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.21.0/manifests"},{"name":"1.20.2","sha":"158c7e8cf090d0a9cfffb50083888ae88f3eeaae","kind":"commit","published_at":"2024-06-17T14:53:01.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.20.2","html_url":"https://github.com/getsentry/craft/releases/tag/1.20.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.20.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.20.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.20.2/manifests"},{"name":"1.20.1","sha":"d35e5cf4990a6ac0cf69ed39ea518c186f27f05a","kind":"commit","published_at":"2024-05-23T14:55:57.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.20.1","html_url":"https://github.com/getsentry/craft/releases/tag/1.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.20.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.20.1/manifests"},{"name":"1.20.0","sha":"af30bdedd3ff702f2a4e342c501d89def70faf5e","kind":"commit","published_at":"2024-05-16T09:42:26.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.20.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.20.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.20.0/manifests"},{"name":"1.19.1","sha":"2889e0ec3de99efca0b5ef53042f8496028cc375","kind":"commit","published_at":"2024-04-25T08:42:27.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.19.1","html_url":"https://github.com/getsentry/craft/releases/tag/1.19.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.19.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.19.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.19.1/manifests"},{"name":"1.19.0","sha":"b9e642a58f9148faec96d8f8f3b0e112d0c1e020","kind":"commit","published_at":"2024-04-15T14:02:06.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.19.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.19.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.19.0/manifests"},{"name":"1.18.0","sha":"4885da257827757be46cab7e3b3936f2054fbda0","kind":"commit","published_at":"2024-04-11T13:57:28.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.18.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.18.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.18.0/manifests"},{"name":"1.17.2","sha":"79465f0fda43621033e0df2e88382d330bbab9d4","kind":"commit","published_at":"2024-04-02T18:09:00.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.17.2","html_url":"https://github.com/getsentry/craft/releases/tag/1.17.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.17.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.17.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.17.2/manifests"},{"name":"1.17.1","sha":"765e7e970d486280f1af3e1e1b6abbcd60e93a2a","kind":"commit","published_at":"2024-03-26T17:03:07.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.17.1","html_url":"https://github.com/getsentry/craft/releases/tag/1.17.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.17.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.17.1/manifests"},{"name":"1.17.0","sha":"c1f9e4d19ea256dc260d04cd1b0974a5e6cfbdc4","kind":"commit","published_at":"2024-03-25T17:56:15.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.17.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.17.0/manifests"},{"name":"1.16.0","sha":"5bb87fe68322e521da3aeaa0dfa4c49e39dc3bc0","kind":"commit","published_at":"2024-03-20T13:55:11.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.16.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.16.0/manifests"},{"name":"1.15.0","sha":"2cd316f5b9791a8c49d20f133a24d935fe30d28d","kind":"commit","published_at":"2024-03-18T17:54:09.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.15.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.15.0/manifests"},{"name":"1.14.0","sha":"c75b8e77c02854122c9a45a912b4e66f7710a757","kind":"commit","published_at":"2024-03-18T15:03:07.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.14.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.14.0/manifests"},{"name":"1.13.0","sha":"ce6dbff51177aef84f0e2cc0a4eecf41f8196fd4","kind":"commit","published_at":"2024-03-15T16:32:17.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.13.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.13.0/manifests"},{"name":"1.12.0","sha":"bad1655ceb82a97d9279fea1d002ec5fa9b7fbf5","kind":"commit","published_at":"2024-03-13T15:00:37.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.12.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.12.0/manifests"},{"name":"1.11.1","sha":"bcbfd22bfaa60ecad3930790a4eaa2a1dbb41f6b","kind":"commit","published_at":"2024-03-12T14:52:16.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.11.1","html_url":"https://github.com/getsentry/craft/releases/tag/1.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.11.1/manifests"},{"name":"1.11.0","sha":"199e9524060c937bd9596fb2bd48526920ed7ffa","kind":"commit","published_at":"2024-03-11T18:58:00.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.11.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.11.0/manifests"},{"name":"1.10.0","sha":"8f04d804eb0fd758d13f5f4d97b37235a09d3436","kind":"commit","published_at":"2024-02-09T15:29:33.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.10.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.10.0/manifests"},{"name":"1.9.1","sha":"9210f7995bac46bb261b08d126c339cc290b3368","kind":"commit","published_at":"2024-02-08T16:47:24.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.9.1","html_url":"https://github.com/getsentry/craft/releases/tag/1.9.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.9.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.9.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.9.1/manifests"},{"name":"1.9.0","sha":"e6a85bc62c5f85aef32820a080ab58f0033f3ce4","kind":"commit","published_at":"2024-02-08T16:26:47.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.9.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.9.0/manifests"},{"name":"1.8.2","sha":"f51877042938cc74ab2b8ed0a88a14b77a73996b","kind":"commit","published_at":"2024-02-05T21:30:21.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.8.2","html_url":"https://github.com/getsentry/craft/releases/tag/1.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.8.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.8.2/manifests"},{"name":"1.8.1","sha":"1112430894ddf97eb29fdd055ea338bc6debdfc6","kind":"commit","published_at":"2023-11-22T23:04:52.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.8.1","html_url":"https://github.com/getsentry/craft/releases/tag/1.8.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.8.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.8.1/manifests"},{"name":"1.8.0","sha":"15bcfab7dd4f733ed06c6dd6d781a38a1c8476de","kind":"commit","published_at":"2023-11-17T08:29:59.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.8.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.8.0/manifests"},{"name":"1.7.0","sha":"a6dff052dbfafc0f1268e1c522ad94ebde8bfec0","kind":"commit","published_at":"2023-11-09T17:37:52.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.7.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.7.0/manifests"},{"name":"1.6.1","sha":"6e270db87f6b55617b3d70a73fd3567e8c9b8d06","kind":"commit","published_at":"2023-10-24T08:47:41.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.6.1","html_url":"https://github.com/getsentry/craft/releases/tag/1.6.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.6.1/manifests"},{"name":"1.6.0","sha":"4cfe7bdfd49af484f592af03c3ff881cec5d625a","kind":"commit","published_at":"2023-10-23T10:37:12.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.6.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.6.0/manifests"},{"name":"1.5.0","sha":"e172a5a4a22f965329db95bad74c7007013f0845","kind":"commit","published_at":"2023-10-19T09:34:34.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.5.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.5.0/manifests"},{"name":"1.4.4","sha":"1a29531b7c4e2cbe9181365ddb1c89a48ee45623","kind":"commit","published_at":"2023-08-30T08:57:10.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.4.4","html_url":"https://github.com/getsentry/craft/releases/tag/1.4.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.4.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.4.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.4.4/manifests"},{"name":"1.4.3","sha":"802dbdd0adc51a4b4d52e97deca29977223c98c3","kind":"commit","published_at":"2023-08-07T20:57:13.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.4.3","html_url":"https://github.com/getsentry/craft/releases/tag/1.4.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.4.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.4.3/manifests"},{"name":"1.4.2","sha":"b3465d215d2cc3ab14ce1129a968deae549cd7d7","kind":"commit","published_at":"2023-07-26T14:44:01.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.4.2","html_url":"https://github.com/getsentry/craft/releases/tag/1.4.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.4.2/manifests"},{"name":"1.4.1","sha":"98f41bae215a53dadea5e9e522e07b3df8518b12","kind":"commit","published_at":"2023-07-18T07:52:25.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.4.1","html_url":"https://github.com/getsentry/craft/releases/tag/1.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.4.1/manifests"},{"name":"1.4.0","sha":"6b66ecce12e4387d6166ef292b0f97d3679316ba","kind":"commit","published_at":"2023-07-18T07:36:30.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.4.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.4.0/manifests"},{"name":"1.3.0","sha":"1b70fbdfe7b71c2af65d6f09890b375abc0b8bf2","kind":"commit","published_at":"2023-07-17T13:14:00.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.3.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.3.0/manifests"},{"name":"1.2.3","sha":"f3b5da43fb9dec3c0bfeb55b9451524c16c2daa4","kind":"commit","published_at":"2023-07-11T15:22:06.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.2.3","html_url":"https://github.com/getsentry/craft/releases/tag/1.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.2.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.2.3/manifests"},{"name":"1.2.2","sha":"ac042e48ce962b8c04255513dd7c71bf6278a89e","kind":"commit","published_at":"2023-05-17T06:46:35.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.2.2","html_url":"https://github.com/getsentry/craft/releases/tag/1.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.2.2/manifests"},{"name":"1.2.1","sha":"3c5da3d5bfd54aeec555bb1e87503069fe36c2d4","kind":"commit","published_at":"2023-03-13T15:53:27.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.2.1","html_url":"https://github.com/getsentry/craft/releases/tag/1.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.2.1/manifests"},{"name":"1.2.0","sha":"b88e2f91edb0666c8da8b08533e6032447934e6a","kind":"commit","published_at":"2023-03-13T08:36:02.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.2.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.2.0/manifests"},{"name":"1.1.1","sha":"e406ada788a0c92a8d7658edde771a36aee1a301","kind":"commit","published_at":"2023-02-09T23:47:17.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.1.1","html_url":"https://github.com/getsentry/craft/releases/tag/1.1.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.1.1/manifests"},{"name":"1.1.0","sha":"04ef420158a7e512b94403ca01c86ca29770c262","kind":"commit","published_at":"2023-02-08T17:08:26.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.1.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.1.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.1.0/manifests"},{"name":"1.0.1","sha":"2c901d833f3e66d6481c8e91adb1d6fa3a167693","kind":"commit","published_at":"2023-02-06T17:01:28.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.0.1","html_url":"https://github.com/getsentry/craft/releases/tag/1.0.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.0.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.0.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.0.1/manifests"},{"name":"1.0.0","sha":"537381db5753e485a79e4589eaf7f3982837ee71","kind":"commit","published_at":"2023-02-03T21:10:15.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/1.0.0","html_url":"https://github.com/getsentry/craft/releases/tag/1.0.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@1.0.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.0.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/1.0.0/manifests"},{"name":"0.35.1","sha":"2b5664e3f3651a3690592ec2de1ed30c77405f5a","kind":"commit","published_at":"2023-02-03T19:34:48.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.35.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.35.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.35.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.35.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.35.1/manifests"},{"name":"0.35.0","sha":"e6c83080a5adf1dc86f01ffab3a7daaf8218af5f","kind":"commit","published_at":"2023-01-30T14:38:15.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.35.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.35.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.35.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.35.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.35.0/manifests"},{"name":"0.34.3","sha":"9951e1b4709dff1e29f0d930f71e6cce3e0a3d83","kind":"commit","published_at":"2023-01-05T14:11:41.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.34.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.34.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.34.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.34.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.34.3/manifests"},{"name":"0.34.2","sha":"5be95c84f9f89d2de4bb97e7995b0687e59d8ec6","kind":"commit","published_at":"2023-01-04T22:02:02.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.34.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.34.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.34.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.34.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.34.2/manifests"},{"name":"0.34.1","sha":"0ce63b0ccd5b6b12cd4a703d321ec7fe4678027c","kind":"commit","published_at":"2023-01-04T21:48:28.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.34.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.34.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.34.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.34.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.34.1/manifests"},{"name":"0.34.0","sha":"4855130c13337630cb63477c05ad2a58d5772ae8","kind":"commit","published_at":"2023-01-04T19:59:27.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.34.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.34.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.34.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.34.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.34.0/manifests"},{"name":"0.33.8","sha":"964913fc04b0e5e8c85f84748d2052eb5f712ee5","kind":"commit","published_at":"2022-12-16T22:03:17.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.33.8","html_url":"https://github.com/getsentry/craft/releases/tag/0.33.8","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.33.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.8/manifests"},{"name":"0.33.7","sha":"e41c1c1697621766dac5f10cec14a910802e7cb0","kind":"commit","published_at":"2022-11-18T05:21:31.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.33.7","html_url":"https://github.com/getsentry/craft/releases/tag/0.33.7","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.33.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.7/manifests"},{"name":"0.33.6","sha":"1a7d91fee27b9beecd7f2e2606eab02d246367cf","kind":"commit","published_at":"2022-11-08T19:08:29.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.33.6","html_url":"https://github.com/getsentry/craft/releases/tag/0.33.6","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.33.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.6/manifests"},{"name":"0.33.5","sha":"35f33da6d82f0ef9d3598c8e9036af1ce6f9d82f","kind":"commit","published_at":"2022-09-12T16:59:29.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.33.5","html_url":"https://github.com/getsentry/craft/releases/tag/0.33.5","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.33.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.5/manifests"},{"name":"0.33.4","sha":"223d0b9b964dd4f0c04959b3e0f601f05bf8e11b","kind":"commit","published_at":"2022-08-31T21:12:47.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.33.4","html_url":"https://github.com/getsentry/craft/releases/tag/0.33.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.33.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.4/manifests"},{"name":"0.33.3","sha":"d8c306f61f2e5ad7569a867df82825432f4ccfed","kind":"commit","published_at":"2022-07-22T20:47:37.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.33.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.33.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.33.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.3/manifests"},{"name":"0.33.2","sha":"353487224dcc819b9ddea797cbadb8268e0e65bd","kind":"commit","published_at":"2022-05-25T13:31:50.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.33.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.33.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.33.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.2/manifests"},{"name":"0.33.1","sha":"6a1b7f9d4020b58f72a4eef88a588ca583789d2f","kind":"commit","published_at":"2022-05-11T09:17:59.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.33.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.33.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.33.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.1/manifests"},{"name":"0.33.0","sha":"c0d7411fdbdd08d39383ffa4899f87b78e02f92a","kind":"commit","published_at":"2022-05-10T06:31:02.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.33.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.33.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.33.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.33.0/manifests"},{"name":"0.32.1","sha":"f61cee06a8ac5651d174d7f747a1dbca01053e09","kind":"commit","published_at":"2022-04-26T10:01:52.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.32.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.32.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.32.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.32.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.32.1/manifests"},{"name":"0.32.0","sha":"a9edea8ed75cb37eefd84b5c6e5f3012ee411aa5","kind":"commit","published_at":"2022-04-12T12:05:24.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.32.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.32.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.32.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.32.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.32.0/manifests"},{"name":"0.31.0","sha":"5986a890f9e2704125b54ef81e1291077e47cfcd","kind":"commit","published_at":"2022-04-04T13:33:38.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.31.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.31.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.31.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.31.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.31.0/manifests"},{"name":"0.30.1","sha":"a06e91def69cd849b7addd3efc8f75775d448110","kind":"commit","published_at":"2022-03-21T14:47:24.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.30.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.30.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.30.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.30.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.30.1/manifests"},{"name":"0.30.0","sha":"627a3497c0117b1cfcee44c8bdce23d74c8d4cd4","kind":"commit","published_at":"2022-03-02T11:31:32.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.30.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.30.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.30.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.30.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.30.0/manifests"},{"name":"0.29.3","sha":"5cc8fb01699218165c8b1c1a81d248e6ce02dd32","kind":"commit","published_at":"2022-02-28T15:46:23.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.29.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.29.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.29.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.29.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.29.3/manifests"},{"name":"0.29.2","sha":"14c04f8e05092316c80c4bd746d3fd17870160eb","kind":"commit","published_at":"2022-02-24T13:17:29.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.29.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.29.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.29.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.29.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.29.2/manifests"},{"name":"0.29.1","sha":"04dc8d3a12389a4899f64de2adb14458166e2f44","kind":"commit","published_at":"2022-02-24T10:02:17.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.29.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.29.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.29.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.29.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.29.1/manifests"},{"name":"0.29.0","sha":"e59a07106ede8c1cc2ce9da4a376c37e99dd0a05","kind":"commit","published_at":"2022-02-23T14:49:16.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.29.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.29.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.29.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.29.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.29.0/manifests"},{"name":"0.28.1","sha":"f265a2e11128521ddc167a2f1870f4a899b2408e","kind":"commit","published_at":"2022-02-14T13:56:25.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.28.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.28.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.28.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.28.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.28.1/manifests"},{"name":"0.28.0","sha":"3f52f7b67670105d2acbaa3648c6dbba13e33cc9","kind":"commit","published_at":"2022-02-14T12:34:50.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.28.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.28.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.28.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.28.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.28.0/manifests"},{"name":"0.27.6","sha":"34a30b72dd29746f02387a2f22614a143f169f92","kind":"commit","published_at":"2022-02-11T11:28:52.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.27.6","html_url":"https://github.com/getsentry/craft/releases/tag/0.27.6","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.27.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.6/manifests"},{"name":"0.27.5","sha":"b2769e515acdfeae53402dbb5ce2344b549d1c18","kind":"commit","published_at":"2022-02-10T14:26:10.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.27.5","html_url":"https://github.com/getsentry/craft/releases/tag/0.27.5","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.27.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.5/manifests"},{"name":"0.27.4","sha":"42c4721cbe6f1160e671abca37bde886e9a7b314","kind":"tag","published_at":"2022-01-17T18:53:01.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.27.4","html_url":"https://github.com/getsentry/craft/releases/tag/0.27.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.27.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.4/manifests"},{"name":"0.27.3","sha":"7be6a5011b76d7397fb652547a5588395681cb60","kind":"tag","published_at":"2021-12-09T10:36:55.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.27.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.27.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.27.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.3/manifests"},{"name":"0.27.2","sha":"862970f9c2d248460e50eb1d1dffc3ec9a2c9e42","kind":"tag","published_at":"2021-11-18T11:02:04.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.27.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.27.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.27.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.2/manifests"},{"name":"0.27.1","sha":"a7b39a0cccb1d0538241fb7343114ddcc2a815a7","kind":"tag","published_at":"2021-11-11T15:25:58.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.27.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.27.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.27.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.1/manifests"},{"name":"0.27.0","sha":"de45ac1731bcba4da7526e05c1203c7330fd2725","kind":"tag","published_at":"2021-10-22T16:02:47.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.27.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.27.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.27.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.27.0/manifests"},{"name":"0.26.2","sha":"a41f2268738571613070922c3fb9e997b9286ecb","kind":"tag","published_at":"2021-10-15T18:27:49.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.26.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.26.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.26.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.26.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.26.2/manifests"},{"name":"0.26.1","sha":"a3188d19b025566ebcdbbe85c4d0d49bcd216de1","kind":"tag","published_at":"2021-10-15T18:08:29.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.26.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.26.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.26.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.26.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.26.1/manifests"},{"name":"0.26.0","sha":"1a3985e08613958e8759d748ba62e59f21d8913e","kind":"tag","published_at":"2021-10-08T14:29:11.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.26.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.26.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.26.0/manifests"},{"name":"0.25.3","sha":"186c376a0eb554fe603603a1ed01e9dfb2c2a3e9","kind":"tag","published_at":"2021-10-01T10:38:46.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.25.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.25.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.25.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.25.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.25.3/manifests"},{"name":"0.25.2","sha":"7efb38b6344f5343e44077c70074beec84050c9b","kind":"tag","published_at":"2021-09-29T13:33:39.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.25.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.25.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.25.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.25.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.25.2/manifests"},{"name":"0.25.1","sha":"0ed6c613f4286e08469e6125270cf0519bc935e3","kind":"tag","published_at":"2021-09-28T13:37:10.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.25.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.25.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.25.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.25.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.25.1/manifests"},{"name":"0.25.0","sha":"ce04c5977542ba88a0752133618942fa60503dbc","kind":"tag","published_at":"2021-09-23T20:09:01.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.25.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.25.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.25.0/manifests"},{"name":"0.24.4","sha":"56842ce157e7143da7c405d1b4a0d89f30cffd46","kind":"tag","published_at":"2021-06-16T21:29:09.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.24.4","html_url":"https://github.com/getsentry/craft/releases/tag/0.24.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.24.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.24.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.24.4/manifests"},{"name":"0.24.3","sha":"6b93a3792cc72e53378ce88bca5cdd077f300f17","kind":"tag","published_at":"2021-06-16T08:47:06.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.24.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.24.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.24.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.24.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.24.3/manifests"},{"name":"0.24.2","sha":"003fa23b09f777708a8767c094351041cac510ca","kind":"tag","published_at":"2021-06-10T21:06:10.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.24.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.24.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.24.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.24.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.24.2/manifests"},{"name":"0.24.1","sha":"e775f19191e4a0bc59fcdde17782d9abd53292cf","kind":"tag","published_at":"2021-06-10T16:58:36.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.24.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.24.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.24.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.24.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.24.1/manifests"},{"name":"0.24.0","sha":"e9a2caf07fd4ddc0aaae690516b4f83cb0b46485","kind":"tag","published_at":"2021-06-08T11:09:24.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.24.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.24.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.24.0/manifests"},{"name":"0.23.1","sha":"e362637775a26cb22379e27f6010ac2ddea264d0","kind":"tag","published_at":"2021-06-02T17:45:59.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.23.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.23.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.23.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.23.1/manifests"},{"name":"0.23.0","sha":"302bac00055a21760d310efdd66ea3901ee5b58d","kind":"tag","published_at":"2021-06-02T14:07:52.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.23.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.23.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.23.0/manifests"},{"name":"0.22.2","sha":"d929a8efef5f3bd983967308b785bea13ec7c57f","kind":"tag","published_at":"2021-05-17T20:15:57.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.22.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.22.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.22.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.22.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.22.2/manifests"},{"name":"0.22.1","sha":"f1db5a5f07e0ff2c8e68e9bf8a38657b54a4265f","kind":"tag","published_at":"2021-05-17T07:09:56.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.22.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.22.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.22.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.22.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.22.1/manifests"},{"name":"0.22.0","sha":"21a7007f3bea309f94203721e2dad0658e7b2362","kind":"tag","published_at":"2021-05-12T21:56:35.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.22.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.22.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.22.0/manifests"},{"name":"0.21.1","sha":"da83b5ef6a27f1b2b7f551e9019a5fdd78128f1e","kind":"tag","published_at":"2021-04-26T14:07:07.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.21.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.21.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.21.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.21.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.21.1/manifests"},{"name":"0.21.0","sha":"1b23cd3c831c1711989a080c655277ef868dd94a","kind":"tag","published_at":"2021-04-23T16:27:51.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.21.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.21.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.21.0/manifests"},{"name":"0.20.0","sha":"c4bb71b6d398bb0b470139336ddf95f113865bb9","kind":"tag","published_at":"2021-04-06T15:18:04.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.20.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.20.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.20.0/manifests"},{"name":"0.19.0","sha":"fe422933064ab0c6dfd3e7508227551802417e80","kind":"tag","published_at":"2021-04-01T13:34:06.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.19.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.19.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.19.0/manifests"},{"name":"0.18.0","sha":"8c8d0acfa02a6ec891a2c9c950c1b126f443d8c4","kind":"tag","published_at":"2021-02-24T21:07:01.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.18.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.18.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.18.0/manifests"},{"name":"0.17.2","sha":"284bed7c1036c036ca682876a0091d2efc13d851","kind":"tag","published_at":"2021-02-04T16:24:29.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.17.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.17.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.17.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.17.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.17.2/manifests"},{"name":"0.17.1","sha":"3db6ea0123ffa048b843516f2cc08b646af1bf91","kind":"tag","published_at":"2021-02-03T17:39:11.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.17.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.17.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.17.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.17.1/manifests"},{"name":"0.17.0","sha":"0f3ae769ef592c90584a32470e29d6ea76c42d56","kind":"tag","published_at":"2021-02-03T10:53:22.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.17.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.17.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.17.0/manifests"},{"name":"0.16.1","sha":"b6f1b44ed6d8e65a1b8146bb2fb408198693f435","kind":"tag","published_at":"2021-01-21T08:08:32.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.16.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.16.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.16.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.16.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.16.1/manifests"},{"name":"0.16.0","sha":"38a099188926aeaacc828e6a200cf45ed18a2c9a","kind":"tag","published_at":"2021-01-19T12:26:44.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.16.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.16.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.16.0/manifests"},{"name":"0.15.0","sha":"2ca22b8231382fcb6eda50bcd535f70126c4be4f","kind":"tag","published_at":"2021-01-07T10:24:45.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.15.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.15.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.15.0/manifests"},{"name":"0.14.0","sha":"dfb29a612875471c40428dbfa1ef8dcb10e70fae","kind":"tag","published_at":"2020-12-11T20:26:54.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.14.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.14.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.14.0/manifests"},{"name":"0.13.3","sha":"c0b4c531df1d03ee8b55a593f709f41b170032d4","kind":"tag","published_at":"2020-11-29T11:34:46.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.13.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.13.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.13.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.13.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.13.3/manifests"},{"name":"0.13.2","sha":"82163a5e095e3358d3ba904d383d47adc7bfb055","kind":"tag","published_at":"2020-10-29T14:50:44.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.13.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.13.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.13.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.13.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.13.2/manifests"},{"name":"0.13.1","sha":"00bf94950c3a4c980202bbc7f2e96afdfb4029f5","kind":"tag","published_at":"2020-10-29T12:43:24.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.13.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.13.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.13.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.13.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.13.1/manifests"},{"name":"0.13.0","sha":"868b07b0d7210abe2c4f167e1f0269b9db8fcded","kind":"tag","published_at":"2020-10-29T12:28:35.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.13.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.13.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.13.0/manifests"},{"name":"0.12.0","sha":"f4456a37a8dcfd590b87154032acb8a5a6314f13","kind":"tag","published_at":"2020-10-15T14:56:44.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.12.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.12.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.12.0/manifests"},{"name":"0.11.1","sha":"93492a7fd1b765da2a539f95e118bf144024a2bf","kind":"tag","published_at":"2020-09-21T08:27:04.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.11.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.11.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.11.1/manifests"},{"name":"0.11.0","sha":"0c211e4a6792911990691a26bbce5b7989f7f910","kind":"tag","published_at":"2020-08-20T11:27:15.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.11.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.11.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.11.0/manifests"},{"name":"0.10.1","sha":"f8a578aa9401a261d6e33a46b3527e7b5c985785","kind":"tag","published_at":"2020-06-18T19:39:06.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.10.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.10.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.10.1/manifests"},{"name":"0.10.0","sha":"385afe1096ac5a8e82073f0a23eee6ee1298de0f","kind":"tag","published_at":"2020-06-12T09:37:08.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.10.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.10.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.10.0/manifests"},{"name":"0.9.6","sha":"5f6728eb42a03413a0cc563d731988b8e2022a22","kind":"tag","published_at":"2020-05-19T18:20:25.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.9.6","html_url":"https://github.com/getsentry/craft/releases/tag/0.9.6","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.9.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.6/manifests"},{"name":"0.9.5","sha":"0b246c4dfb8dad98154d3a08e9adaae813b03add","kind":"tag","published_at":"2020-05-08T06:41:49.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.9.5","html_url":"https://github.com/getsentry/craft/releases/tag/0.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.9.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.5/manifests"},{"name":"0.9.4","sha":"b6e7830fe3c5e58521b956fd528d96b3230a6864","kind":"tag","published_at":"2020-04-23T09:54:45.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.9.4","html_url":"https://github.com/getsentry/craft/releases/tag/0.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.9.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.4/manifests"},{"name":"0.9.3","sha":"9bdc13359cde49367505e1b1475c8f83c0cb084b","kind":"tag","published_at":"2020-04-22T07:59:21.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.9.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.9.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.3/manifests"},{"name":"0.9.2","sha":"f32b88da47d6988bb527a79941d99e6a4ea076a5","kind":"tag","published_at":"2020-03-24T07:46:28.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.9.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.9.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.2/manifests"},{"name":"0.9.1","sha":"0baa648640e75e7667ecebb770c836af4eefff3d","kind":"tag","published_at":"2020-02-06T12:03:34.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.9.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.9.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.9.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.1/manifests"},{"name":"0.9.0","sha":"5911b309d77e51662ee73edb21a06936e39ebecf","kind":"tag","published_at":"2020-01-27T09:29:33.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.9.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.9.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.9.0/manifests"},{"name":"0.8.4","sha":"e562664b35b6b45c26fc178ee5c032f2f17499a0","kind":"tag","published_at":"2019-11-19T10:45:49.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.8.4","html_url":"https://github.com/getsentry/craft/releases/tag/0.8.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.8.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.8.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.8.4/manifests"},{"name":"0.8.3","sha":"95d06d3b551e4be5d51d1036c50c1a77b1e9235b","kind":"tag","published_at":"2019-07-26T21:07:16.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.8.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.8.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.8.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.8.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.8.3/manifests"},{"name":"0.8.2","sha":"e456459bf779c9880eeb01275ab4f3fa884ba9b5","kind":"tag","published_at":"2019-07-26T13:36:18.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.8.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.8.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.8.2/manifests"},{"name":"0.8.1","sha":"51ab93e09501ddafd3f8ce94639e1d64d06ee32f","kind":"tag","published_at":"2019-07-25T16:27:39.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.8.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.8.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.8.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.8.1/manifests"},{"name":"0.8.0","sha":"ef18acc7b8f93b9e91156bc986a0e67020530137","kind":"tag","published_at":"2019-07-25T15:51:00.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.8.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.8.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.8.0/manifests"},{"name":"0.7.10","sha":"e7e8f6b4380e81cda964e4e5b7bc70106962a7de","kind":"tag","published_at":"2019-06-24T08:38:22.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.7.10","html_url":"https://github.com/getsentry/craft/releases/tag/0.7.10","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.7.10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.10/manifests"},{"name":"0.7.9","sha":"adf12202f1b2d24107d94d2585f49a10dccf0d30","kind":"tag","published_at":"2019-04-23T09:45:33.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.7.9","html_url":"https://github.com/getsentry/craft/releases/tag/0.7.9","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.7.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.9/manifests"},{"name":"0.7.8","sha":"9790655d286f486fcce93dbbbd40ab7e0df35399","kind":"tag","published_at":"2019-03-22T09:28:19.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.7.8","html_url":"https://github.com/getsentry/craft/releases/tag/0.7.8","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.7.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.8/manifests"},{"name":"0.7.7","sha":"42f07373288e9dbac55439ffb44f7f42a785e039","kind":"tag","published_at":"2019-03-18T18:09:42.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.7.7","html_url":"https://github.com/getsentry/craft/releases/tag/0.7.7","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.7.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.7/manifests"},{"name":"0.7.6","sha":"2dedcd823dc90314bb5705c1c49d91214fd274b0","kind":"tag","published_at":"2019-03-14T13:43:21.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.7.6","html_url":"https://github.com/getsentry/craft/releases/tag/0.7.6","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.7.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.6/manifests"},{"name":"0.7.5","sha":"e0d2627cdfa70ddd2b29a1d9be24e5cbf918e011","kind":"tag","published_at":"2019-03-08T12:31:43.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.7.5","html_url":"https://github.com/getsentry/craft/releases/tag/0.7.5","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.7.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.5/manifests"},{"name":"0.7.4","sha":"faa09e840d2c6eec83530737a634aed1f0bf2cd4","kind":"tag","published_at":"2019-02-12T11:28:52.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.7.4","html_url":"https://github.com/getsentry/craft/releases/tag/0.7.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.7.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.4/manifests"},{"name":"0.7.3","sha":"f0f96ccb509a3d589c631d3867eb31eb1dccff02","kind":"tag","published_at":"2019-02-05T14:15:03.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.7.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.7.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.7.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.3/manifests"},{"name":"0.7.2","sha":"2e8f5eee04f192ed6e3177b6942076972c03f60f","kind":"tag","published_at":"2019-01-15T09:25:07.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.7.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.7.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.2/manifests"},{"name":"0.7.1","sha":"116fd753fdb4dc4807aea72610a951856e156a30","kind":"tag","published_at":"2018-12-27T21:02:46.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.7.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.7.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.7.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.1/manifests"},{"name":"0.7.0","sha":"9e9fb4822bb8eeb21431ae80d8aab6e33531fe96","kind":"tag","published_at":"2018-12-03T12:50:12.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.7.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.7.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.7.0/manifests"},{"name":"0.6.1","sha":"0889e93ebc5e4c5daa291baced0de43f70ce9311","kind":"commit","published_at":"2018-11-14T12:32:14.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.6.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.6.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.6.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.6.1/manifests"},{"name":"0.6.0","sha":"b61e01951cedefc8f1be90a9bab8e2480733db0d","kind":"commit","published_at":"2018-09-27T14:43:12.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.6.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.6.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.6.0/manifests"},{"name":"0.5.2","sha":"291b460ed598445e4bae5a073944ab20907ef44f","kind":"commit","published_at":"2018-09-27T08:50:13.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.5.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.5.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.5.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.5.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.5.2/manifests"},{"name":"0.5.1","sha":"2e7e0aba586058f35bb60c2e15a179c6724caee5","kind":"commit","published_at":"2018-09-25T19:17:22.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.5.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.5.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.5.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.5.1/manifests"},{"name":"0.5.0","sha":"c1bfc7b189a318b9a29deff35cf8877d1373e2ca","kind":"commit","published_at":"2018-09-25T13:31:58.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.5.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.5.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.5.0/manifests"},{"name":"0.4.11","sha":"c444f5ab471ad8ac76315b157eedad2696ebcb3d","kind":"commit","published_at":"2018-09-14T12:38:03.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.4.11","html_url":"https://github.com/getsentry/craft/releases/tag/0.4.11","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.4.11","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.11","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.11/manifests"},{"name":"0.4.10","sha":"22d04feda9c3dd0e9027e8ef7a46a519f2551587","kind":"commit","published_at":"2018-08-30T18:43:11.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.4.10","html_url":"https://github.com/getsentry/craft/releases/tag/0.4.10","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.4.10","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.10","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.10/manifests"},{"name":"0.4.9","sha":"ce1c899e080bc6fc278989c289f4d2743ff0b493","kind":"commit","published_at":"2018-08-28T09:40:44.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.4.9","html_url":"https://github.com/getsentry/craft/releases/tag/0.4.9","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.4.9","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.9/manifests"},{"name":"0.4.8","sha":"220d7de67005677ddf7e456096a24849d2013ade","kind":"commit","published_at":"2018-08-22T16:36:54.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.4.8","html_url":"https://github.com/getsentry/craft/releases/tag/0.4.8","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.4.8","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.8/manifests"},{"name":"0.4.7","sha":"a6d504d6ed52527e56184b358f4935ebdd4a1ad2","kind":"commit","published_at":"2018-08-22T16:27:39.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.4.7","html_url":"https://github.com/getsentry/craft/releases/tag/0.4.7","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.4.7","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.7/manifests"},{"name":"0.4.6","sha":"df314d9cf6eade0462cca3f0cf3f556baee99d07","kind":"commit","published_at":"2018-08-01T09:21:39.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.4.6","html_url":"https://github.com/getsentry/craft/releases/tag/0.4.6","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.4.6","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.6/manifests"},{"name":"0.4.5","sha":"15ce242e429ee154a24100d8641a527a077c7285","kind":"commit","published_at":"2018-07-30T08:26:22.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.4.5","html_url":"https://github.com/getsentry/craft/releases/tag/0.4.5","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.4.5","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.5/manifests"},{"name":"0.4.4","sha":"41e26c13874c1b93190b8f170eafe941c8f10dd6","kind":"commit","published_at":"2018-07-26T15:12:36.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.4.4","html_url":"https://github.com/getsentry/craft/releases/tag/0.4.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.4.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.4/manifests"},{"name":"0.4.3","sha":"da215850987a3e7f2af5b9688ca42d5486ca2371","kind":"commit","published_at":"2018-07-25T16:32:55.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.4.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.4.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.4.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.3/manifests"},{"name":"0.4.2","sha":"bea3e99b5aa2c4246a6b5b5e5e255c2a89e24ae2","kind":"commit","published_at":"2018-07-24T09:10:06.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.4.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.4.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.4.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.2/manifests"},{"name":"0.4.1","sha":"ce279545b255c51990bb626ca96f10a6606a6cd3","kind":"commit","published_at":"2018-07-18T14:28:20.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.4.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.4.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.1/manifests"},{"name":"0.4.0","sha":"b4cca9226447d9f22374e9b4f1961fb0d7ad5bbc","kind":"commit","published_at":"2018-07-18T13:03:54.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.4.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.4.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.4.0/manifests"},{"name":"0.3.0","sha":"825277d74097411abdcd7a6ca483626a59e3a5eb","kind":"commit","published_at":"2018-07-11T22:42:32.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.3.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.3.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.3.0/manifests"},{"name":"0.2.4","sha":"33ca9209b4d9b0969ab5db8b8f30b4a10924fbfc","kind":"commit","published_at":"2018-07-09T12:30:08.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.2.4","html_url":"https://github.com/getsentry/craft/releases/tag/0.2.4","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.2.4","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.2.4/manifests"},{"name":"0.2.3","sha":"12d289c39c76ab3c474bc1f04f0e2859319092b5","kind":"commit","published_at":"2018-07-09T12:09:29.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.2.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.2.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.2.3/manifests"},{"name":"0.2.2","sha":"6650c461c8398999da37cf0b9299b238cacf7907","kind":"commit","published_at":"2018-07-05T16:42:38.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.2.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.2.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.2.2/manifests"},{"name":"0.2.1","sha":"e5a17488e7159bf0b5a40b103e4e8ba4ca18a5ce","kind":"commit","published_at":"2018-07-05T15:06:16.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.2.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.2.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.2.1/manifests"},{"name":"0.2.0","sha":"22d11423ab6e2a043c2c8327c4e9b7ebe1cb8efc","kind":"commit","published_at":"2018-07-05T14:42:55.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.2.0","html_url":"https://github.com/getsentry/craft/releases/tag/0.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.2.0","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.2.0/manifests"},{"name":"0.1.3","sha":"489a30ca7225a3f639d130d05a979f1bba8242b9","kind":"commit","published_at":"2018-07-03T12:08:40.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.1.3","html_url":"https://github.com/getsentry/craft/releases/tag/0.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.1.3","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.1.3/manifests"},{"name":"0.1.2","sha":"1826d933c178de9158466fe0472e5a1b3fffee58","kind":"commit","published_at":"2018-06-29T11:38:46.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.1.2","html_url":"https://github.com/getsentry/craft/releases/tag/0.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.1.2","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.1.2/manifests"},{"name":"0.1.1","sha":"9d06eedf452e9f3bec5bc23e08360369729792a2","kind":"commit","published_at":"2018-06-28T15:07:00.000Z","download_url":"https://codeload.github.com/getsentry/craft/tar.gz/0.1.1","html_url":"https://github.com/getsentry/craft/releases/tag/0.1.1","dependencies_parsed_at":null,"dependency_job_id":null,"purl":"pkg:github/getsentry/craft@0.1.1","tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/tags/0.1.1/manifests"}]},"repo_metadata_updated_at":"2026-05-22T20:00:21.066Z","dependent_packages_count":0,"downloads":null,"downloads_period":null,"dependent_repos_count":0,"rankings":{"downloads":null,"dependent_repos_count":43.38183053779384,"dependent_packages_count":0.0,"stargazers_count":1.8869672637430512,"forks_count":4.64484249536751,"docker_downloads_count":null,"average":12.4784100742261},"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":["https://sentry.io/pricing/","https://sentry.io/"],"critical":null,"issue_metadata":{"last_synced_at":"2026-05-06T17:35:14.020Z","issues_count":69,"pull_requests_count":293,"avg_time_to_close_issue":38301448.35483871,"avg_time_to_close_pull_request":738968.2193308551,"issues_closed_count":31,"pull_requests_closed_count":269,"pull_request_authors_count":43,"issue_authors_count":32,"avg_comments_per_issue":2.449275362318841,"avg_comments_per_pull_request":1.0273037542662116,"merged_pull_requests_count":233,"bot_issues_count":0,"bot_pull_requests_count":41,"past_year_issues_count":3,"past_year_pull_requests_count":45,"past_year_avg_time_to_close_issue":371229.0,"past_year_avg_time_to_close_pull_request":43885.325,"past_year_issues_closed_count":1,"past_year_pull_requests_closed_count":40,"past_year_pull_request_authors_count":9,"past_year_issue_authors_count":3,"past_year_avg_comments_per_issue":0.0,"past_year_avg_comments_per_pull_request":0.5333333333333333,"past_year_bot_issues_count":0,"past_year_bot_pull_requests_count":7,"past_year_merged_pull_requests_count":37,"issues_url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/repositories/getsentry%2Fcraft/issues","maintainers":[{"login":"BYK","count":39,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/BYK"},{"login":"asottile-sentry","count":32,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/asottile-sentry"},{"login":"bruno-garcia","count":20,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/bruno-garcia"},{"login":"philipphofmann","count":14,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/philipphofmann"},{"login":"romtsn","count":10,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/romtsn"},{"login":"kamilogorek","count":10,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/kamilogorek"},{"login":"chadwhitacre","count":9,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/chadwhitacre"},{"login":"Jeffreyhung","count":8,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Jeffreyhung"},{"login":"mydea","count":8,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/mydea"},{"login":"sl0thentr0py","count":7,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/sl0thentr0py"},{"login":"Lms24","count":7,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Lms24"},{"login":"markushi","count":6,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/markushi"},{"login":"mattgauntseo-sentry","count":6,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/mattgauntseo-sentry"},{"login":"mdtro","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/mdtro"},{"login":"mattjohnsonpint","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/mattjohnsonpint"},{"login":"jan-auer","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/jan-auer"},{"login":"marandaneto","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/marandaneto"},{"login":"joshuarli","count":5,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/joshuarli"},{"login":"HazAT","count":4,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/HazAT"},{"login":"Dav1dde","count":4,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Dav1dde"},{"login":"Swatinem","count":4,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Swatinem"},{"login":"andreiborza","count":4,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/andreiborza"},{"login":"untitaker","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/untitaker"},{"login":"lforst","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/lforst"},{"login":"brian-lou","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/brian-lou"},{"login":"tonyo","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/tonyo"},{"login":"adinauer","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/adinauer"},{"login":"s1gr1d","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/s1gr1d"},{"login":"szokeasaurusrex","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/szokeasaurusrex"},{"login":"AbhiPrasad","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/AbhiPrasad"},{"login":"hubertdeng123","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/hubertdeng123"},{"login":"cleptric","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/cleptric"},{"login":"msonnb","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/msonnb"},{"login":"antonpirker","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/antonpirker"},{"login":"oioki","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/oioki"},{"login":"billyvg","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/billyvg"},{"login":"lobsterkatie","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/lobsterkatie"},{"login":"armcknight","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/armcknight"}],"active_maintainers":[{"login":"BYK","count":25,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/BYK"},{"login":"romtsn","count":4,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/romtsn"},{"login":"mdtro","count":3,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/mdtro"},{"login":"bruno-garcia","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/bruno-garcia"},{"login":"s1gr1d","count":2,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/s1gr1d"},{"login":"andreiborza","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/andreiborza"},{"login":"Lms24","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/Lms24"},{"login":"msonnb","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/msonnb"},{"login":"sl0thentr0py","count":1,"url":"https://issues.ecosyste.ms/api/v1/hosts/GitHub/authors/sl0thentr0py"}]},"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","latest_version_url":"https://packages.ecosyste.ms/api/v1/registries/github%20actions/packages/getsentry%2Fcraft/latest_version","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":[]}