Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,22 @@ and this project **only** adheres to the following _(as defined at [Semantic Ver
> - MINOR version when you add functionality in a backward compatible manner
> - PATCH version when you make backward compatible bug fixes

## [0.6.0] - 2025-12-04

This release expands support for secure communication and improves retrieval of permission information when using the high-level filesystem API.

### Changed

- Increase maximum number of data-object permissions returned by `IRODSFilesystem#status` from 250 to 10000 (#131).

### Fixed

- Fix `IRODSFilesystem#status`'s handling of data objects which have no permissions (#132).

### Added

- Add support for secure communication via JSSE `TrustManager`s (#130).

## [0.5.0] - 2025-10-15

This release makes it so that users can retrieve the checksum of a data object while iterating over a collection.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To use it, add the following to your pom.xml file.
<dependency>
<groupId>org.irods</groupId>
<artifactId>irods4j</artifactId>
<version>0.5.0</version>
<version>0.6.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>org.irods</groupId>
<artifactId>irods4j</artifactId>
<version>0.5.0</version>
<version>0.6.0</version>
<packaging>jar</packaging>

<name>irods4j</name>
Expand Down