ao-io-posix-4.1.0
Release Notes
- Performed Checkstyle clean-up:
- Renamed
PosixFile.setGID(…)
tosetGid(…)
. - Renamed
PosixFile.setUID(…)
tosetUid(…)
.
- Renamed
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
tocom.aoapps:ao-io-posix
. - Package renamed from
com.aoindustries.io.unix
tocom.aoapps.io.posix
. - Renamed
UnixFile
toPosixFile
. -
Deprecated
PosixFile.mktemp(String)
in favor of standardjava.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
toSecureRandom
where cryptographically strong random numbers are required.
ao-io-unix-2.2.1
Release Notes
- Using managed dependencies:
- This project uses managed dependencies.
- This project's managed dependencies may also be imported by other projects.
ao-io-unix-2.2.0
Release Notes
- Minimum Java version changed from 1.6 to 1.7.
- Deprecated UnixFile.mktemp(String template, boolean deleteOnExit) in favor of new TempFileContext that does not suffer from a memory leak in long-running applications.
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 tocrypt
methods, with old methods deprecated and still usingMD5
algorithm for compatibility. - No change to native code; no compilation required.
- Updated dependencies.
ao-io-unix-2.0.0
Release Notes
UID_MIN
andGID_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.- Removed
UnixFile.MINIMUM_USER_UID
. - Removed
UnixFile.MINIMUM_USER_GID
. - Have added
uid_min
andgid_min
parameters to methods that used these constants.
- Removed
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.