Skip to content

Commit 43077c0

Browse files
adinauermaciejwalkowiaklblodergetsentry-bot
authored
Release branch for pre-releasing 6.7 (#2307)
Co-authored-by: Maciej Walkowiak <walkowiak.maciej@yahoo.com> Co-authored-by: Lukas Bloder <lukas.bloder@gmail.com> Co-authored-by: getsentry-bot <bot@sentry.io>
1 parent 2826e76 commit 43077c0

File tree

308 files changed

+8656
-748
lines changed

Some content is hidden

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

308 files changed

+8656
-748
lines changed

.craft.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ targets:
2222
sdks:
2323
maven:io.sentry:sentry:
2424
maven:io.sentry:sentry-spring:
25+
maven:io.sentry:sentry-spring-jakarta:
2526
maven:io.sentry:sentry-spring-boot-starter:
27+
maven:io.sentry:sentry-spring-boot-starter-jakarta:
2628
maven:io.sentry:sentry-servlet:
2729
maven:io.sentry:sentry-servlet-jakarta:
2830
maven:io.sentry:sentry-logback:

.github/ISSUE_TEMPLATE/bug_report_java.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ body:
1717
- sentry-servlet
1818
- sentry-servlet-jakarta
1919
- sentry-spring-boot-starter
20+
- sentry-spring-boot-starter-jakarta
2021
- sentry-spring
22+
- sentry-spring-jakarta
2123
- sentry-logback
2224
- sentry-log4j2
2325
- sentry-graphql

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
# TODO: windows-latest
1818
os: [ubuntu-latest, macos-latest]
1919
# Zulu Community distribution of OpenJDK
20-
java: ['11']
20+
java: ['17']
2121

2222
steps:
2323
- name: Git checkout
@@ -27,7 +27,7 @@ jobs:
2727
uses: actions/setup-java@v2
2828
with:
2929
java-version: ${{ matrix.java }}
30-
distribution: 'adopt'
30+
distribution: 'temurin'
3131

3232
- name: Cache Gradle packages
3333
uses: actions/cache@v2
@@ -50,7 +50,7 @@ jobs:
5050

5151
- name: Archive packages
5252
# We need artifacts from only one the builds
53-
if: runner.os == 'Linux' && matrix.java == '11'
53+
if: runner.os == 'Linux' && matrix.java == '17'
5454
uses: actions/upload-artifact@v2
5555
with:
5656
name: ${{ github.sha }}
@@ -61,7 +61,7 @@ jobs:
6161
6262
- name: Upload coverage to Codecov
6363
# We need coverage data from only one the builds
64-
if: runner.os == 'Linux' && matrix.java == '11'
64+
if: runner.os == 'Linux' && matrix.java == '17'
6565
uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70 # pin@v3
6666
with:
6767
name: sentry-java

.github/workflows/codeql-analysis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ jobs:
2323
- name: Checkout repository
2424
uses: actions/checkout@v2
2525

26+
- name: 'Set up Java: ${{ matrix.java }}'
27+
uses: actions/setup-java@v2
28+
with:
29+
java-version: 17
30+
distribution: 'temurin'
31+
2632
- name: Cache Gradle packages
2733
uses: actions/cache@v2
2834
with:

.github/workflows/format-code.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
- name: Checkout
1111
uses: actions/checkout@v2
1212

13-
- name: set up JDK 11
13+
- name: set up JDK 17
1414
uses: actions/setup-java@v2
1515
with:
16-
distribution: 'adopt'
17-
java-version: '11'
16+
distribution: 'temurin'
17+
java-version: '17'
1818

1919
- name: Cache Gradle packages
2020
uses: actions/cache@v2

.github/workflows/generate-javadocs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
steps:
1111
- name: Checkout 🛎️
1212
uses: actions/checkout@v2
13-
- name: set up JDK 11
13+
- name: set up JDK 17
1414
uses: actions/setup-java@v2
1515
with:
16-
distribution: 'adopt'
17-
java-version: '11'
16+
distribution: 'temurin'
17+
java-version: '17'
1818

1919
- name: Cache Gradle packages
2020
uses: actions/cache@v2

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ jobs:
2424
- name: Git checkout
2525
uses: actions/checkout@v2
2626

27-
- name: 'Set up Java: 11'
27+
- name: 'Set up Java: 17'
2828
uses: actions/setup-java@v2
2929
with:
30-
java-version: '11'
31-
distribution: 'adopt'
30+
java-version: '17'
31+
distribution: 'temurin'
3232

3333
# Clean, build and release a test apk
3434
- name: Make assembleBenchmarks
@@ -66,11 +66,11 @@ jobs:
6666
- name: Git checkout
6767
uses: actions/checkout@v2
6868

69-
- name: 'Set up Java: 11'
69+
- name: 'Set up Java: 17'
7070
uses: actions/setup-java@v2
7171
with:
72-
java-version: '11'
73-
distribution: 'adopt'
72+
java-version: '17'
73+
distribution: 'temurin'
7474

7575
- uses: actions/cache@v3
7676
id: app-plain-cache

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ jobs:
1919
- name: Git checkout
2020
uses: actions/checkout@v2
2121

22-
- name: 'Set up Java: 11'
22+
- name: 'Set up Java: 17'
2323
uses: actions/setup-java@v2
2424
with:
25-
java-version: '11'
26-
distribution: 'adopt'
25+
java-version: '17'
26+
distribution: 'temurin'
2727

2828
# Clean, build and release a test apk
2929
- name: Make assembleUiTests

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,5 @@ bin/
1717
distributions/
1818
/Sentry/A1F16C4F5D23B2A1D281EE471D6F836BDEA23CB4/
1919
*.vscode/
20+
sentry-spring-boot-starter-jakarta/src/main/resources/META-INF/spring.factories
21+
sentry-samples/sentry-samples-spring-boot-jakarta/spy.log

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
- Customizable fragment lifecycle breadcrumbs ([#2299](https://github.com/getsentry/sentry-java/pull/2299))
1313
- Provide hook for Jetpack Compose navigation instrumentation ([#2320](https://github.com/getsentry/sentry-java/pull/2320))
1414
- Populate `event.modules` with dependencies metadata ([#2324](https://github.com/getsentry/sentry-java/pull/2324))
15+
- Support Spring 6 and Spring Boot 3 ([#2289](https://github.com/getsentry/sentry-java/pull/2289))
1516

1617
### Dependencies
1718

0 commit comments

Comments
 (0)