Skip to content

Commit

Permalink
Publish 34.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
DreierF committed Jan 15, 2025
1 parent 76ad9d1 commit 4c86fef
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ We use [semantic versioning](http://semver.org/):
- PATCH version when you make backwards compatible bug fixes.

# Next version
- [fix] _agent_: Warning about multiple agents being present is misleading

# 34.2.1
- [fix] _agent_: Warning about multiple agents being present is misleading
- [fix] _agent_: CVE-2024-26308

# 34.2.0
- [fix] _agent_: `search-git-properties-recursively` was not considered when jar was given via `artifactory-git-properties-jar`
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

group = "com.teamscale"

val appVersion by extra("34.2.0")
val appVersion by extra("34.2.1")

val snapshotVersion = appVersion + if (VersionUtils.isTaggedRelease()) "" else "-SNAPSHOT"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,8 @@ dependencies {

testRuntimeOnly(lib("junit-platform-launcher"))
testRuntimeOnly(lib("junit-jupiter-engine"))

constraints {
implementation("org.apache.commons:commons-compress:1.27.1")
}
}

0 comments on commit 4c86fef

Please sign in to comment.