AO IO POSIX Changelog

ao-io-posix-4.1.0

Release Notes

  • Performed Checkstyle clean-up:
    1. Renamed PosixFile.setGID(…) to setGid(…).
    2. Renamed PosixFile.setUID(…) to setUid(…).

ao-io-posix-4.0.0

Release Notes

  • Now supports Java 9+ modules with included module-info.class.
  • Maven artifact relocated from com.aoindustries:ao-io-unix to com.aoapps:ao-io-posix.
  • Package renamed from com.aoindustries.io.unix to com.aoapps.io.posix.
  • Renamed UnixFile to PosixFile.
  • Deprecated PosixFile.mktemp(String) in favor of standard java.nio.file.Files.createTempDirectory(…), which does not require any custom JNI native library.

ao-io-unix-3.0.1

Release Notes

  • Minimum Java version changed from 1.7 to 1.8.
  • Reduced use of property substitutions in pom.xml. This is to help 3rd-party parsers that fail to perform full Maven-compatible substitutions.
  • Updated dependencies.

ao-io-unix-3.0.0

Release Notes

  • Changed API from Random to SecureRandom where cryptographically strong random numbers are required.

ao-io-unix-2.2.1

Release Notes

  • Using managed dependencies:
    1. This project uses managed dependencies.
    2. This project's managed dependencies may also be imported by other projects.

ao-io-unix-2.2.0

Release Notes

ao-io-unix-2.1.0

Release Notes

  • Added support for glibc 2.7 sha-256 and sha-512 crypt algorithms.
  • Added CryptAlgorithm enum representing the supported algorithms.
  • Added additional CryptAlgorithm parameter to crypt methods, with old methods deprecated and still using MD5 algorithm for compatibility.
  • No change to native code; no compilation required.
  • Updated dependencies.

ao-io-unix-2.0.0

Release Notes

  • UID_MIN and GID_MIN, as found in /etc/login.defs, is now set on a per-server basis. Older servers keep this at 500 whereas newer servers use the current default of 1000.

    1. Removed UnixFile.MINIMUM_USER_UID.
    2. Removed UnixFile.MINIMUM_USER_GID.
    3. Have added uid_min and gid_min parameters to methods that used these constants.

ao-io-unix-1.0.2

Release Notes

  • New AO OSS Parent POM to simplify pom.xml files.
  • Project documentation moved to per-project book in SemanticCMS format.
  • Added changelog as top-level project link.

ao-io-unix-1.0.1

Release Notes

  • Improved Javadoc formatting.
  • Improved README formatting.

ao-io-unix-1.0.0

Release Notes

  • Project moved to GitHub and Maven.