Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated Tomcat versions to latest releases
I made the change "in place" because the original merge request hasn't
been merged in yet.

- Upgraded Tomcat 8 to 8.5.86
- Upgraded Tomcat 9 to 9.0.72
- Upgraded Tomcat 10 to 10.1.6 (this is the new default)
- Upgraded Tomcat 11 to 11.0.0-M3 (this is the latest alpha release)
  • Loading branch information
Stefan Penndorf committed Feb 27, 2023
commit d76af6641cbba0a084f6622563d8e114089dfd85
10 changes: 5 additions & 5 deletions src/main/scala/io/sdkman/changelogs/TomcatMigration.scala
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ class TomcatMigration {
removeVersion("tomcat", "10.1.0-M8")

List(
"8" -> "8.5.85",
"8" -> "8.5.86",
"9" -> "9.0.65",
"9" -> "9.0.71",
"10" -> "10.1.5",
"11" -> "11.0.0-M1"
"9" -> "9.0.72",
"10" -> "10.1.6",
"11" -> "11.0.0-M3"
).map {
case (series: String, version: String) =>
Version(
Expand All @@ -103,6 +103,6 @@ class TomcatMigration {
}
.validate()
.insert()
setCandidateDefault("tomcat", "10.1.5")
setCandidateDefault("tomcat", "10.1.6")
}
}