Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep 5.8.4 #416

Merged
merged 11 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from 10 commits
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
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
5.8.4 (January 2024)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
5.8.4 (January 2024)
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)
----------------------

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading