diff --git a/CHANGELOG.md b/CHANGELOG.md index 6af44dc7d..43d83f03e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +5.8.4 (MAy 2024) +---------------- + +- BugFix: Handle out of space [#427](https://github.com/ome/omero-insight/pull/427) +- BugFix: Use correct type in equals [#422](https://github.com/ome/omero-insight/pull/422) +- BugFix: Logical AND needed [#419](https://github.com/ome/omero-insight/pull/419) +- BugFix: Add missing break statement [#419](https://github.com/ome/omero-insight/pull/419) +- BugFix: Fix comparaison of objects via equals [#419](https://github.com/ome/omero-insight/pull/419) +- BugFix: Fix posix issue [#418](https://github.com/ome/omero-insight/pull/418) +- BugFix: Add break [#413](https://github.com/ome/omero-insight/pull/413) +- BugFix: Adjust shift logic [#404](https://github.com/ome/omero-insight/pull/404) +- BugFix: Set the font [#407](https://github.com/ome/omero-insight/pull/407) +- BugFix: Add missing return [#408](https://github.com/ome/omero-insight/pull/408) +- BugFix: Use super to remove the key from the HashMap [#402](https://github.com/ome/omero-insight/pull/402) +- Update: Use Gateway method for downloading image [#409](https://github.com/ome/omero-insight/pull/409) +- Bump omero-gateway-java to 5.9.1 [#416](https://github.com/ome/omero-insight/pull/416) +- Bump logback-classic to 1.3.14 [#416](https://github.com/ome/omero-insight/pull/416) +- Bump logback-core to 1.3.14 [#416](https://github.com/ome/omero-insight/pull/416) + 5.8.3 (September 2023) ---------------------- diff --git a/build.gradle b/build.gradle index 4b06b63a7..800093caa 100644 --- a/build.gradle +++ b/build.gradle @@ -43,12 +43,12 @@ dependencies { implementation("org.jfree:jfreechart:1.0.19") implementation("org.swinglabs:swingx:1.6.1") - implementation("org.openmicroscopy:omero-gateway:5.8.2") { + implementation("org.openmicroscopy:omero-gateway:5.9.1") { // Conflicts with `net.java.dev.jna` exclude group: "com.sun.jna", module: "jna" } - implementation("ch.qos.logback:logback-classic:1.3.5") - implementation("ch.qos.logback:logback-core:1.3.5") + implementation("ch.qos.logback:logback-classic:1.3.14") + implementation("ch.qos.logback:logback-core:1.3.14") } test {