Skip to content

Commit 2bf99b5

Browse files
committed
Merge branch 'feat/new-user-feedback-logic' into feat/user-feedback-widget
# Conflicts: # CHANGELOG.md
2 parents 5a83bb8 + 212ffbf commit 2bf99b5

File tree

20 files changed

+133
-50
lines changed

20 files changed

+133
-50
lines changed

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
* text eol=lf
22
*.png binary
33
*.jpg binary
4+
5+
# These are explicitly windows files and should use crlf
6+
*.bat text eol=crlf

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
4141

4242
- name: Initialize CodeQL
43-
uses: github/codeql-action/init@45775bd8235c68ba998cffa5171334d58593da47 # pin@v2
43+
uses: github/codeql-action/init@60168efe1c415ce0f5521ea06d5c2062adbeed1b # pin@v2
4444
with:
4545
languages: 'java'
4646

@@ -49,4 +49,4 @@ jobs:
4949
./gradlew buildForCodeQL
5050
5151
- name: Perform CodeQL Analysis
52-
uses: github/codeql-action/analyze@45775bd8235c68ba998cffa5171334d58593da47 # pin@v2
52+
uses: github/codeql-action/analyze@60168efe1c415ce0f5521ea06d5c2062adbeed1b # pin@v2

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- name: Get auth token
2121
id: token
22-
uses: actions/create-github-app-token@3ff1caaa28b64c9cc276ce0a02e2ff584f3900c5 # v2.0.2
22+
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
2323
with:
2424
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
2525
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,31 @@
66

77
- Add new User Feedback API ([#4286](https://github.com/getsentry/sentry-java/pull/4286))
88
- We now introduced Sentry.captureFeedback, which supersedes Sentry.captureUserFeedback
9+
10+
### Dependencies
11+
12+
- Bump Gradle from v8.13 to v8.14.0 ([#4360](https://github.com/getsentry/sentry-java/pull/4360))
13+
- [changelog](https://github.com/gradle/gradle/blob/master/CHANGELOG.md#v8140)
14+
- [diff](https://github.com/gradle/gradle/compare/v8.13...v8.14.0)
15+
16+
## 8.11.1
17+
18+
### Fixes
19+
20+
- Fix Android profile chunk envelope type for UI Profiling ([#4366](https://github.com/getsentry/sentry-java/pull/4366))
21+
22+
## 8.11.0
23+
24+
### Features
25+
926
- Make `RequestDetailsResolver` public ([#4326](https://github.com/getsentry/sentry-java/pull/4326))
1027
- `RequestDetailsResolver` is now public and has an additional constructor, making it easier to use a custom `TransportFactory`
1128

29+
### Fixes
30+
31+
- Session Replay: Fix masking of non-styled `Text` Composables ([#4361](https://github.com/getsentry/sentry-java/pull/4361))
32+
- Session Replay: Fix masking read-only `TextField` Composables ([#4362](https://github.com/getsentry/sentry-java/pull/4362))
33+
1234
## 8.10.0
1335

1436
### Features

README.md

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -100,17 +100,6 @@ This repo uses the following ways to release SDK updates:
100100
* [Sample App. with Sentry Java SDK](https://github.com/getsentry/examples/tree/master/java).
101101
* [Sample for Development](https://github.com/getsentry/sentry-java/tree/main/sentry-samples).
102102

103-
# Development
104-
105-
This repository includes [`sentry-native`](https://github.com/getsentry/sentry-native/) as a git submodule.
106-
To build against `sentry-native` checked-out elsewhere in your file system, create a symlink `sentry-android-ndk/sentry-native-local` that points to your `sentry-native` directory.
107-
For example, if you had `sentry-native` checked-out in a sibling directory to this repo:
108-
109-
`ln -s ../../sentry-native sentry-android-ndk/sentry-native-local`
110-
111-
which will be picked up by `gradle` and used instead of the git submodule.
112-
This directory is also included in `.gitignore` not to be shown as pending changes.
113-
114103
# Sentry Self Hosted Compatibility
115104

116105
Since version 3.0.0 of this SDK, Sentry version >= v20.6.0 is required. This only applies to self-hosted Sentry, if you are using [sentry.io](http://sentry.io/) no action is needed.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ org.gradle.workers.max=2
1414
android.useAndroidX=true
1515

1616
# Release information
17-
versionName=8.10.0
17+
versionName=8.11.1
1818

1919
# Override the SDK name on native crashes on Android
2020
sentryAndroidSdkName=sentry.native.android

gradle/wrapper/gradle-wrapper.jar

122 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
#Mon Mar 17 13:40:54 CET 2025
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
54
networkTimeout=10000
65
validateDistributionUrl=true
76
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ fi
205205
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206206

207207
# Collect all arguments for the java command:
208-
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
208+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209209
# and any embedded shellness will be escaped.
210210
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211211
# treated as '${Hostname}' itself on the command line.

scripts/toggle-codec-logs.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ case "$ACTION" in
4545
adb shell setprop log.tag.BufferQueueProducer D
4646
adb shell setprop log.tag.ReflectedParamUpdater D
4747
adb shell setprop log.tag.hw-BpHwBinder D
48+
adb shell setprop log.tag.ACodec D
49+
adb shell setprop log.tag.VideoCapabilities D
50+
adb shell setprop log.tag.OMXUtils D
51+
adb shell setprop log.tag.OMXClient D
4852
echo "✅ Logs ENABLED"
4953
;;
5054
disable)
@@ -67,6 +71,10 @@ case "$ACTION" in
6771
adb shell setprop log.tag.BufferQueueProducer SILENT
6872
adb shell setprop log.tag.ReflectedParamUpdater SILENT
6973
adb shell setprop log.tag.hw-BpHwBinder SILENT
74+
adb shell setprop log.tag.ACodec SILENT
75+
adb shell setprop log.tag.VideoCapabilities SILENT
76+
adb shell setprop log.tag.OMXUtils SILENT
77+
adb shell setprop log.tag.OMXClient SILENT
7078
echo "🚫 Logs DISABLED"
7179
;;
7280
*)

0 commit comments

Comments
 (0)