Skip to content

Commit 3122bec

Browse files
authored
Merge branch 'develop' into cg/csp-nonce
2 parents 8603296 + e623782 commit 3122bec

File tree

296 files changed

+6401
-2162
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

296 files changed

+6401
-2162
lines changed

.craft.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ targets:
114114
- name: npm
115115
id: '@sentry/remix'
116116
includeNames: /^sentry-remix-\d.*\.tgz$/
117+
- name: npm
118+
id: '@sentry/solidstart'
119+
includeNames: /^sentry-solidstart-\d.*\.tgz$/
117120
- name: npm
118121
id: '@sentry/sveltekit'
119122
includeNames: /^sentry-sveltekit-\d.*\.tgz$/
@@ -203,6 +206,8 @@ targets:
203206
onlyIfPresent: /^sentry-remix-\d.*\.tgz$/
204207
'npm:@sentry/solid':
205208
onlyIfPresent: /^sentry-solid-\d.*\.tgz$/
209+
'npm:@sentry/solidstart':
210+
onlyIfPresent: /^sentry-solidstart-\d.*\.tgz$/
206211
'npm:@sentry/svelte':
207212
onlyIfPresent: /^sentry-svelte-\d.*\.tgz$/
208213
'npm:@sentry/sveltekit':

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: 🐞 Bug Report
22
description: Tell us about something that's not working the way we (probably) intend.
3-
labels: ['Type: Bug']
3+
type: 'bug'
44
body:
55
- type: checkboxes
66
attributes:
@@ -31,20 +31,23 @@ body:
3131
setup.
3232
options:
3333
- '@sentry/browser'
34-
- '@sentry/astro'
34+
- '@sentry/node'
3535
- '@sentry/angular'
36+
- '@sentry/astro'
3637
- '@sentry/aws-serverless'
3738
- '@sentry/bun'
39+
- '@sentry/cloudflare'
3840
- '@sentry/deno'
3941
- '@sentry/ember'
4042
- '@sentry/gatsby'
4143
- '@sentry/google-cloud-serverless'
4244
- '@sentry/nestjs'
4345
- '@sentry/nextjs'
44-
- '@sentry/node'
46+
- '@sentry/nuxt'
4547
- '@sentry/react'
4648
- '@sentry/remix'
4749
- '@sentry/solid'
50+
- '@sentry/solidstart'
4851
- '@sentry/svelte'
4952
- '@sentry/sveltekit'
5053
- '@sentry/vue'

.github/ISSUE_TEMPLATE/feature.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: 💡 Feature Request
22
description: Create a feature request for a sentry-javascript SDK.
3-
labels: ['Type: Improvement']
3+
type: 'enhancement'
44
body:
55
- type: markdown
66
attributes:

.github/ISSUE_TEMPLATE/flaky.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: ❅ Flaky Test
22
description: Report a flaky test in CI
33
title: '[Flaky CI]: '
4+
type: 'task'
45
labels: ['Type: Tests']
56
body:
67
- type: dropdown

.github/ISSUE_TEMPLATE/internal.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: 💡 [Internal] Blank Issue
22
description: Only for Sentry Employees! Create an issue without a template.
3+
type: 'task'
34
body:
5+
- type: markdown
6+
attributes:
7+
value: Make sure to apply relevant labels and issue types before submitting.
48
- type: textarea
59
id: description
610
attributes:
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: "Install Playwright dependencies"
2+
description: "Installs Playwright dependencies and caches them."
3+
inputs:
4+
browsers:
5+
description: 'What browsers to install.'
6+
default: 'chromium webkit firefox'
7+
8+
runs:
9+
using: "composite"
10+
steps:
11+
- name: Get Playwright version
12+
id: playwright-version
13+
run: echo "version=$(node -p "require('@playwright/test/package.json').version")" >> $GITHUB_OUTPUT
14+
shell: bash
15+
16+
- name: Cache playwright binaries
17+
uses: actions/cache@v4
18+
id: playwright-cache
19+
with:
20+
path: |
21+
~/.cache/ms-playwright
22+
key: playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}
23+
24+
# We always install all browsers, if uncached
25+
- name: Install Playwright dependencies (uncached)
26+
run: npx playwright install chromium webkit firefox --with-deps
27+
if: steps.playwright-cache.outputs.cache-hit != 'true'
28+
shell: bash
29+
30+
- name: Install Playwright system dependencies only (cached)
31+
run: npx playwright install-deps ${{ inputs.browsers || 'chromium webkit firefox' }}
32+
if: steps.playwright-cache.outputs.cache-hit == 'true'
33+
shell: bash

0 commit comments

Comments
 (0)