Skip to content

Commit

Permalink
java-dogstatsd-client 4.3.0 (#6851)
Browse files Browse the repository at this point in the history
... and accommodate 8KiB increase in jar size
  • Loading branch information
mcculls authored Mar 27, 2024
1 parent 171641c commit 5a80fb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dd-java-agent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ tasks.register('checkAgentJarSize').configure {
doLast {
// Arbitrary limit to prevent unintentional increases to the agent jar size
// Raise or lower as required
def megs = (project.rootProject.hasProperty("agentIncludeCwsTls") && agentIncludeCwsTls) ? 29 : 28
def megs = (project.rootProject.hasProperty("agentIncludeCwsTls") && agentIncludeCwsTls) ? 30 : 29
assert shadowJar.archiveFile.get().getAsFile().length() <= megs * 1024 * 1024
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ final class CachedData {
truth : "1.1.3",
kotlin : "1.6.21",
coroutines : "1.3.0",
dogstatsd : "4.2.0",
dogstatsd : "4.3.0",
jnr_unixsocket: "0.38.22",
jnr_posix : '3.1.19',
commons : "3.2",
Expand Down

0 comments on commit 5a80fb6

Please sign in to comment.