Skip to content

Commit 445c414

Browse files
authored
Merge branch 'main' into feat/ignored-errors-manifest
2 parents 867cfbe + 1e5daad commit 445c414

File tree

227 files changed

+3464
-1871
lines changed

Some content is hidden

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

227 files changed

+3464
-1871
lines changed

.github/ISSUE_TEMPLATE/bug_report_java.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ body:
3434
- sentry-openfeign
3535
- sentry-apache-http-client-5
3636
- sentry-okhttp
37+
- sentry-reactor
3738
- other
3839
validations:
3940
required: true

.github/workflows/agp-matrix.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
agp: [ '8.0.0','8.1.4','8.2.0','8.3.0-beta01' ]
20+
agp: [ '8.7.0','8.8.0','8.9.0-beta01' ]
2121
integrations: [ true, false ]
2222

2323
name: AGP Matrix Release - AGP ${{ matrix.agp }} - Integrations ${{ matrix.integrations }}
2424
env:
2525
VERSION_AGP: ${{ matrix.agp }}
2626
APPLY_SENTRY_INTEGRATIONS: ${{ matrix.integrations }}
27+
GRADLE_ENCRYPTION_KEY: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
2728

2829
steps:
2930
- name: Checkout Repo
@@ -38,9 +39,10 @@ jobs:
3839
java-version: '17'
3940

4041
- name: Setup Gradle
41-
uses: gradle/actions/setup-gradle@8790d96bb8fdd8ae7edfb2eada090c650b257f27 # pin@v3
42+
uses: gradle/actions/setup-gradle@aa23778d2dc6f6556fcc7164e99babbd8c3134e4 # pin@v3
4243
with:
4344
gradle-home-cache-cleanup: true
45+
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
4446

4547
- name: Setup KVM
4648
shell: bash

.github/workflows/build.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
name: Build Job ubuntu-latest - Java 17
1515
runs-on: ubuntu-latest
1616

17+
env:
18+
GRADLE_ENCRYPTION_KEY: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
19+
1720
steps:
1821
- name: Checkout Repo
1922
uses: actions/checkout@v4
@@ -26,16 +29,24 @@ jobs:
2629
distribution: 'temurin'
2730
java-version: '17'
2831

32+
# Workaround for https://github.com/gradle/actions/issues/21 to use config cache
33+
- name: Cache buildSrc
34+
uses: actions/cache@v4
35+
with:
36+
path: buildSrc/build
37+
key: build-logic-${{ hashFiles('buildSrc/src/**', 'buildSrc/build.gradle.kts','buildSrc/settings.gradle.kts') }}
38+
2939
- name: Setup Gradle
30-
uses: gradle/actions/setup-gradle@8790d96bb8fdd8ae7edfb2eada090c650b257f27 # pin@v3
40+
uses: gradle/actions/setup-gradle@aa23778d2dc6f6556fcc7164e99babbd8c3134e4 # pin@v3
3141
with:
3242
gradle-home-cache-cleanup: true
43+
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
3344

3445
- name: Run Tests with coverage and Lint
3546
run: make preMerge
3647

3748
- name: Upload coverage to Codecov
38-
uses: codecov/codecov-action@1e68e06f1dbfde0e4cefc87efeba9e4643565303 # pin@v4
49+
uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # pin@v4
3950
with:
4051
name: sentry-java
4152
fail_ci_if_error: false

.github/workflows/codeql-analysis.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ concurrency:
1616
jobs:
1717
analyze:
1818
name: Analyze
19-
runs-on: ubuntu-latest
19+
runs-on: macos-15
2020

21-
strategy:
22-
fail-fast: false
21+
env:
22+
GRADLE_ENCRYPTION_KEY: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
2323

2424
steps:
2525
- name: Checkout Repo
@@ -34,12 +34,13 @@ jobs:
3434
java-version: '17'
3535

3636
- name: Setup Gradle
37-
uses: gradle/actions/setup-gradle@8790d96bb8fdd8ae7edfb2eada090c650b257f27 # pin@v3
37+
uses: gradle/actions/setup-gradle@aa23778d2dc6f6556fcc7164e99babbd8c3134e4 # pin@v3
3838
with:
3939
gradle-home-cache-cleanup: true
40+
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
4041

4142
- name: Initialize CodeQL
42-
uses: github/codeql-action/init@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # pin@v2
43+
uses: github/codeql-action/init@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # pin@v2
4344
with:
4445
languages: 'java'
4546

@@ -48,4 +49,4 @@ jobs:
4849
./gradlew buildForCodeQL
4950
5051
- name: Perform CodeQL Analysis
51-
uses: github/codeql-action/analyze@b6a472f63d85b9c78a3ac5e89422239fc15e9b3c # pin@v2
52+
uses: github/codeql-action/analyze@9e8d0789d4a0fa9ceb6b1738f7e269594bdd67f0 # pin@v2

.github/workflows/enforce-license-compliance.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Setup Gradle
14-
uses: gradle/actions/setup-gradle@8790d96bb8fdd8ae7edfb2eada090c650b257f27 # pin@v3
14+
uses: gradle/actions/setup-gradle@aa23778d2dc6f6556fcc7164e99babbd8c3134e4 # pin@v3
1515
with:
1616
gradle-home-cache-cleanup: true
1717

.github/workflows/generate-javadocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
java-version: '17'
2121

2222
- name: Setup Gradle
23-
uses: gradle/actions/setup-gradle@8790d96bb8fdd8ae7edfb2eada090c650b257f27 # pin@v3
23+
uses: gradle/actions/setup-gradle@aa23778d2dc6f6556fcc7164e99babbd8c3134e4 # pin@v3
2424
with:
2525
gradle-home-cache-cleanup: true
2626

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/integration-tests-benchmarks.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ jobs:
2323
# we copy the secret to the env variable in order to access it in the workflow
2424
env:
2525
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
26+
GRADLE_ENCRYPTION_KEY: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
2627

2728
steps:
2829
- name: Git checkout
@@ -37,9 +38,10 @@ jobs:
3738
java-version: '17'
3839

3940
- name: Setup Gradle
40-
uses: gradle/actions/setup-gradle@8790d96bb8fdd8ae7edfb2eada090c650b257f27 # pin@v3
41+
uses: gradle/actions/setup-gradle@aa23778d2dc6f6556fcc7164e99babbd8c3134e4 # pin@v3
4142
with:
4243
gradle-home-cache-cleanup: true
44+
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
4345

4446
# Clean, build and release a test apk, but only if we will run the benchmark
4547
- name: Make assembleBenchmarks
@@ -72,6 +74,7 @@ jobs:
7274
# we copy the secret to the env variable in order to access it in the workflow
7375
env:
7476
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
77+
GRADLE_ENCRYPTION_KEY: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
7578

7679
steps:
7780
- name: Git checkout
@@ -86,9 +89,10 @@ jobs:
8689
java-version: '17'
8790

8891
- name: Setup Gradle
89-
uses: gradle/actions/setup-gradle@8790d96bb8fdd8ae7edfb2eada090c650b257f27 # pin@v3
92+
uses: gradle/actions/setup-gradle@aa23778d2dc6f6556fcc7164e99babbd8c3134e4 # pin@v3
9093
with:
9194
gradle-home-cache-cleanup: true
95+
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
9296

9397
- uses: actions/cache@v4
9498
id: app-plain-cache

.github/workflows/integration-tests-ui-critical.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ jobs:
2121
build:
2222
name: Build
2323
runs-on: ubuntu-latest
24+
25+
env:
26+
GRADLE_ENCRYPTION_KEY: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
27+
2428
steps:
2529
- name: Checkout code
2630
uses: actions/checkout@v4
@@ -32,9 +36,10 @@ jobs:
3236
java-version: '17'
3337

3438
- name: Setup Gradle
35-
uses: gradle/actions/setup-gradle@8790d96bb8fdd8ae7edfb2eada090c650b257f27 # pin@v3
39+
uses: gradle/actions/setup-gradle@aa23778d2dc6f6556fcc7164e99babbd8c3134e4 # pin@v3
3640
with:
3741
gradle-home-cache-cleanup: true
42+
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
3843

3944
- name: Build debug APK
4045
run: make assembleUiTestCriticalRelease

.github/workflows/integration-tests-ui.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
env:
1919
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
2020
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
21+
GRADLE_ENCRYPTION_KEY: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
2122

2223
steps:
2324
- name: Git checkout
@@ -32,9 +33,10 @@ jobs:
3233
java-version: '17'
3334

3435
- name: Setup Gradle
35-
uses: gradle/actions/setup-gradle@8790d96bb8fdd8ae7edfb2eada090c650b257f27 # pin@v3
36+
uses: gradle/actions/setup-gradle@aa23778d2dc6f6556fcc7164e99babbd8c3134e4 # pin@v3
3637
with:
3738
gradle-home-cache-cleanup: true
39+
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
3840

3941
# Clean, build and release a test apk, but only if we will run the benchmark
4042
- name: Make assembleUiTests

0 commit comments

Comments
 (0)