Skip to content

Commit b0508a0

Browse files
committed
Merge branch 'main' into rz/fix/external-files-dir-optin
2 parents 53ee685 + 3d5a001 commit b0508a0

15 files changed

+242
-32
lines changed

.github/workflows/agp-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494

9595
- name: Upload test results
9696
if: always()
97-
uses: actions/upload-artifact@v5
97+
uses: actions/upload-artifact@v6
9898
with:
9999
name: test-results-AGP${{ matrix.agp }}-Integrations${{ matrix.integrations }}
100100
path: |

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: Upload test results
5555
if: always()
56-
uses: actions/upload-artifact@v5
56+
uses: actions/upload-artifact@v6
5757
with:
5858
name: test-results-build
5959
path: |

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
run: make assembleUiTestCriticalRelease
4545

4646
- name: Upload APK artifact
47-
uses: actions/upload-artifact@v5
47+
uses: actions/upload-artifact@v6
4848
with:
4949
name: ${{env.APK_ARTIFACT_NAME}}
5050
path: "${{env.BASE_PATH}}/${{env.BUILD_PATH}}/${{env.APK_NAME}}"
@@ -110,7 +110,7 @@ jobs:
110110
script: echo "Generated AVD snapshot for caching."
111111

112112
- name: Download APK artifact
113-
uses: actions/download-artifact@v6
113+
uses: actions/download-artifact@v7
114114
with:
115115
name: ${{env.APK_ARTIFACT_NAME}}
116116

@@ -137,7 +137,7 @@ jobs:
137137
138138
- name: Upload Maestro test results
139139
if: failure()
140-
uses: actions/upload-artifact@v5
140+
uses: actions/upload-artifact@v6
141141
with:
142142
name: maestro-logs
143143
path: "${{env.BASE_PATH}}/maestro-logs"

.github/workflows/release-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
run: make publish
3333

3434
- name: Upload artifacts
35-
uses: actions/upload-artifact@v5
35+
uses: actions/upload-artifact@v6
3636
with:
3737
name: ${{ github.sha }}
3838
if-no-files-found: error

.github/workflows/spring-boot-2-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
151151
- name: Upload test results
152152
if: always()
153-
uses: actions/upload-artifact@v5
153+
uses: actions/upload-artifact@v6
154154
with:
155155
name: test-results-springboot-2-${{ matrix.springboot-version }}
156156
path: |

.github/workflows/spring-boot-3-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
151151
- name: Upload test results
152152
if: always()
153-
uses: actions/upload-artifact@v5
153+
uses: actions/upload-artifact@v6
154154
with:
155155
name: test-results-springboot-3-${{ matrix.springboot-version }}
156156
path: |

.github/workflows/spring-boot-4-matrix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ jobs:
151151
152152
- name: Upload test results
153153
if: always()
154-
uses: actions/upload-artifact@v5
154+
uses: actions/upload-artifact@v6
155155
with:
156156
name: test-results-springboot-4-${{ matrix.springboot-version }}
157157
path: |

.github/workflows/system-tests-backend.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ jobs:
147147
148148
- name: Upload test results
149149
if: always()
150-
uses: actions/upload-artifact@v5
150+
uses: actions/upload-artifact@v6
151151
with:
152152
name: test-results-${{ matrix.sample }}-${{ matrix.agent }}-${{ matrix.agent-auto-init }}-system-test
153153
path: |

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,17 @@
22

33
## Unreleased
44

5+
### Improvements
6+
7+
- Discard envelopes on `4xx` and `5xx` response ([#4950](https://github.com/getsentry/sentry-java/pull/4950))
8+
- This aims to not overwhelm Sentry after an outage or load shedding (including HTTP 429) where too many events are sent at once
9+
10+
11+
## 8.29.0
12+
513
### Fixes
614

15+
- Support serialization of primitive arrays (boolean[], byte[], short[], char[], int[], long[], float[], double[]) ([#4968](https://github.com/getsentry/sentry-java/pull/4968))
716
- Session Replay: Improve network body parsing and truncation handling ([#4958](https://github.com/getsentry/sentry-java/pull/4958))
817

918
### Internal

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
1111
android.useAndroidX=true
1212

1313
# Release information
14-
versionName=8.28.0
14+
versionName=8.29.0
1515

1616
# Override the SDK name on native crashes on Android
1717
sentryAndroidSdkName=sentry.native.android

0 commit comments

Comments
 (0)