Skip to content

Commit 1b7c68d

Browse files
github-actions[bot]web-flowromtsn
authored
chore(deps): update Gradle to v8.13.0 (#4209)
* chore: update scripts/update-gradle.sh to v8.13.0 * Do not use identityPath as it doesn't exist anymore --------- Co-authored-by: GitHub <[email protected]> Co-authored-by: Roman Zavarnitsyn <[email protected]>
1 parent 11bd630 commit 1b7c68d

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

CHANGELOG.md

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

77
- Reduce excessive CPU usage when serializing breadcrumbs to disk for ANRs ([#4181](https://github.com/getsentry/sentry-java/pull/4181))
88

9+
### Dependencies
10+
11+
- Bump Gradle from v8.12.1 to v8.13.0 ([#4209](https://github.com/getsentry/sentry-java/pull/4209))
12+
- [changelog](https://github.com/gradle/gradle/blob/master/CHANGELOG.md#v8130)
13+
- [diff](https://github.com/gradle/gradle/compare/v8.12.1...v8.13.0)
14+
915
## 8.4.0
1016

1117
### Fixes

gradle/wrapper/gradle-wrapper.jar

79 Bytes
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,7 @@ done
8686
# shellcheck disable=SC2034
8787
APP_BASE_NAME=${0##*/}
8888
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89-
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
90-
' "$PWD" ) || exit
89+
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
9190

9291
# Use the maximum available, or set MAX_FD != -1 to use that value.
9392
MAX_FD=maximum

sentry-samples/sentry-samples-spring-boot-jakarta-opentelemetry/build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,7 @@ tasks.register<BootRun>("bootRunWithAgent").configure {
8484
classpath = mainBootRunTask.classpath
8585

8686
val versionName = project.properties["versionName"] as String
87-
val agentProjectId = projects.sentryOpentelemetry.sentryOpentelemetryAgent.identityPath.toString()
88-
val agentProjectPath = project(agentProjectId).projectDir.absolutePath
89-
val agentJarPath = "$agentProjectPath/build/libs/sentry-opentelemetry-agent-$versionName.jar"
87+
val agentJarPath = "$rootDir/sentry-opentelemetry/sentry-opentelemetry-agent/build/libs/sentry-opentelemetry-agent-$versionName.jar"
9088

9189
val dsn = System.getenv("SENTRY_DSN") ?: "https://[email protected]/5428563"
9290
val tracesSampleRate = System.getenv("SENTRY_TRACES_SAMPLE_RATE") ?: "1"

sentry-samples/sentry-samples-spring-boot-opentelemetry/build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,7 @@ tasks.register<BootRun>("bootRunWithAgent").configure {
8585
classpath = mainBootRunTask.classpath
8686

8787
val versionName = project.properties["versionName"] as String
88-
val agentProjectId = projects.sentryOpentelemetry.sentryOpentelemetryAgent.identityPath.toString()
89-
val agentProjectPath = project(agentProjectId).projectDir.absolutePath
90-
val agentJarPath = "$agentProjectPath/build/libs/sentry-opentelemetry-agent-$versionName.jar"
88+
val agentJarPath = "$rootDir/sentry-opentelemetry/sentry-opentelemetry-agent/build/libs/sentry-opentelemetry-agent-$versionName.jar"
9189

9290
val dsn = System.getenv("SENTRY_DSN") ?: "https://[email protected]/5428563"
9391
val tracesSampleRate = System.getenv("SENTRY_TRACES_SAMPLE_RATE") ?: "1"

0 commit comments

Comments
 (0)