Skip to content

Commit 3738ae6

Browse files
authored
Merge branch 'develop' into fix/node-fastify-deprecation
2 parents 56f8718 + 0ca8821 commit 3738ae6

File tree

198 files changed

+3448
-1304
lines changed

Some content is hidden

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

198 files changed

+3448
-1304
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$/
@@ -183,6 +186,8 @@ targets:
183186
format: base64
184187
'npm:@sentry/bun':
185188
onlyIfPresent: /^sentry-bun-\d.*\.tgz$/
189+
'npm:@sentry/cloudflare':
190+
onlyIfPresent: /^sentry-cloudflare-\d.*\.tgz$/
186191
'npm:@sentry/deno':
187192
onlyIfPresent: /^sentry-deno-\d.*\.tgz$/
188193
'npm:@sentry/ember':

.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: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "Install Playwright dependencies"
2+
description: "Installs Playwright dependencies and caches them."
3+
4+
runs:
5+
using: "composite"
6+
steps:
7+
- name: Get Playwright version
8+
id: playwright-version
9+
run: echo "version=$(node -p "require('@playwright/test/package.json').version")" >> $GITHUB_OUTPUT
10+
shell: bash
11+
12+
- name: Cache playwright binaries
13+
uses: actions/cache@v4
14+
id: playwright-cache
15+
with:
16+
path: |
17+
~/.cache/ms-playwright
18+
key: playwright-${{ runner.os }}-${{ steps.playwright-version.outputs.version }}
19+
20+
- name: Install Playwright dependencies (uncached)
21+
run: npx playwright install chromium webkit firefox --with-deps
22+
if: steps.playwright-cache.outputs.cache-hit != 'true'
23+
shell: bash
24+
25+
- name: Install Playwright system dependencies only (cached)
26+
run: npx playwright install-deps chromium webkit firefox
27+
if: steps.playwright-cache.outputs.cache-hit == 'true'
28+
shell: bash

0 commit comments

Comments
 (0)