diff --git a/.craft.yml b/.craft.yml index 94e5b37d02a0..ba9b1d13322a 100644 --- a/.craft.yml +++ b/.craft.yml @@ -1,6 +1,11 @@ minVersion: '0.23.1' changelogPolicy: simple preReleaseCommand: bash scripts/craft-pre-release.sh +statusProvider: + name: github + config: + contexts: + - job_required_jobs_passed targets: # NPM Targets ## 1. Base Packages, node or browser SDKs depend on diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 696ae9310d11..4cfa56ec640e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -599,7 +599,7 @@ jobs: needs: [job_get_metadata, job_build] if: needs.job_get_metadata.outputs.changed_browser == 'true' || github.event_name != 'pull_request' runs-on: ubuntu-20.04 - timeout-minutes: 10 + timeout-minutes: 20 strategy: fail-fast: false matrix: @@ -855,8 +855,8 @@ jobs: timeout-minutes: 5 run: yarn test:assert - job_required_tests: - name: All required tests passed or skipped + job_required_jobs_passed: + name: All required jobs passed or were skipped needs: [ job_build, @@ -870,6 +870,9 @@ jobs: job_browser_loader_tests, job_remix_integration_tests, job_e2e_tests, + job_artifacts, + job_lint, + job_circular_dep_check, ] # Always run this, even if a dependent job failed if: always() diff --git a/CHANGELOG.md b/CHANGELOG.md index 89b0e70865e5..eb8cc846b983 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,42 @@ - "You miss 100 percent of the chances you don't take. — Wayne Gretzky" — Michael Scott +## 7.62.0 + +### Important Changes + +- **feat(integrations): Add `ContextLines` integration for html-embedded JS stack frames (#8699)** + +This release adds the `ContextLines` integration as an optional integration for the Browser SDKs to `@sentry/integrations`. + +This integration adds source code from inline JavaScript of the current page's HTML (e.g. JS in ` + +
+ + +