All Versions
6
Latest Version
1.1
Avg Release Cycle
143 days
Latest Release
2994 days ago

Changelog History

  • v1.1 Changes

    February 12, 2016

    🚀 Jimfs 1.1 final release.

    Maven dependency:

    \<dependency\> \<groupId\>com.google.jimfs\</groupId\> \<artifactId\>jimfs\</artifactId\> \<version\>1.1\</version\> \</dependency\>
    

    🚀 Javadoc for the release can be viewed at: http://google.github.io/jimfs/releases/1.1/api/docs/
    🚀 API diffs between Jimfs 1.0 and this release can be viewed at: http://google.github.io/jimfs/releases/1.1/api/diffs/

    🚀 This release contains no changes from 1.1-rc1.

    What's new in 1.1

    • 🏗 Now possible to configure the rate at which a WatchService polls by calling setWatchServiceConfiguration(WatchServiceConfiguration.polling(interval, timeUnit)) when building a Configuration. (#14)
    • 🔧 Now possible to get the default Configuration (based on the current operating system) that is used when calling the Jimfs factory methods that do not take a Configuration parameter, via Configuration.forCurrentPlatform(). Mainly useful if you want to create a slightly modified (e.g. with a different WatchService polling rate) version of that Configuration.
    • 👍 URL objects can now be created from Jimfs Paths (using path.toUri().toURL()). Such URLs support reading the contents of the file through an InputStream, with behavior similar to that of a normal file: URL object. (#13)
    • URIs for directories now end in a trailing /. (#16)
    • 🛠 Fixed an issue with environments where Java SDK code (such as the FileSystems class and by extension the FileSystemProvider implementations it loads as services) and user code (including the Jimfs entry point class) are loaded by different classloaders. (#18)
  • v1.1-rc1 Changes

    January 22, 2016

    🚀 First release candidate for Jimfs 1.1.

    Maven dependency:

    \<dependency\> \<groupId\>com.google.jimfs\</groupId\> \<artifactId\>jimfs\</artifactId\> \<version\>1.1-rc1\</version\> \</dependency\>
    

    🚀 Javadoc for the release can be viewed at: http://google.github.io/jimfs/releases/1.1-rc1/api/docs/
    🚀 API diffs between Jimfs 1.0 and this release can be viewed at: http://google.github.io/jimfs/releases/1.1-rc1/api/diffs/

    What's new in 1.1

    • 🏗 Now possible to configure the rate at which a WatchService polls by calling setWatchServiceConfiguration(WatchServiceConfiguration.polling(interval, timeUnit)) when building a Configuration. (#14)
    • 🔧 Now possible to get the default Configuration (based on the current operating system) that is used when calling the Jimfs factory methods that do not take a Configuration parameter, via Configuration.forCurrentPlatform(). Mainly useful if you want to create a slightly modified (e.g. with a different WatchService polling rate) version of that Configuration.
    • 👍 URL objects can now be created from Jimfs Paths (using path.toUri().toURL()). Such URLs support reading the contents of the file through an InputStream, with behavior similar to that of a normal file: URL object. (#13)
    • URIs for directories now end in a trailing /. (#16)
    • 🛠 Fixed an issue with environments where Java SDK code (such as the FileSystems class and by extension the FileSystemProvider implementations it loads as services) and user code (including the Jimfs entry point class) are loaded by different classloaders. (#18)
  • v1.0 Changes

    June 16, 2014

    🚀 Final 1.0 release. This release contains no changes from 1.0-rc3.

    🚀 This release can be used with Maven as:

    \<dependency\> \<groupId\>com.google.jimfs\</groupId\> \<artifactId\>jimfs\</artifactId\> \<version\>1.0\</version\> \</dependency\>
    

    🚀 Javadoc for the release can be viewed at: http://google.github.io/jimfs/releases/1.0/api/docs/

  • v1.0-rc3 Changes

    June 10, 2014

    🚀 Third release candidate. This release changes the package for all classes from com.google.jimfs to com.google.common.jimfs.

    🚀 This release can be used with Maven as:

    \<dependency\> \<groupId\>com.google.jimfs\</groupId\> \<artifactId\>jimfs\</artifactId\> \<version\>1.0-rc3\</version\> \</dependency\>
    
  • v1.0-rc2 Changes

    May 23, 2014

    🚀 Second release candidate, containing a number of fixes and usability improvements.

    🚀 This release can be used with Maven as:

    \<dependency\> \<groupId\>com.google.jimfs\</groupId\> \<artifactId\>jimfs\</artifactId\> \<version\>1.0-rc2\</version\> \</dependency\>
    

    Notable changes:

    • FileSystem instances are now cached statically, so even if multiple instances of JimfsFileSystemProvider are created, they'll share the same cache of file systems. This is meant to ensure that what ClassLoader happens to load JimfsFileSystemProvider has no effect on behavior (the provider instance itself is only cached if it can be loaded by the system ClassLoader).
    • FileSystem instances are now cached with weak references, allowing them to be garbage collected when no references remain even if close() has not been called. This is preferable in most cases. The only negative impact is that if you wish to hold on to a URI (either for a FileSystem or a Path in that file system) and later use it to retrieve that FileSystem/Path, it may not work unless you ensure that a strong reference to the FileSystem is held somewhere.
    • Closing a FileSystem now closes all open streams, channels, etc. for that file system and causes most Files methods to throw ClosedFileSystemException.
    • 📇 The jar now has OSGi metadata.
  • v1.0-rc1 Changes

    February 26, 2014

    🎉 Initial release candidate, mainly so there's an artifact available in Maven Central that people can use.

    🚀 This release can be used with Maven as:

    \<dependency\> \<groupId\>com.google.jimfs\</groupId\> \<artifactId\>jimfs\</artifactId\> \<version\>1.0-rc1\</version\> \</dependency\>