Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Releases: dart-archive/file.dart

4.0.0

05 Apr 22:16
Compare
Choose a tag to compare
  • Change method signature for RecordingRandomAccessFile._close to return a
    Future<void> instead of Future<RandomAccessFile>. This follows a change in
    dart:io, Dart SDK 2.0.0-dev.40.

3.0.0

20 Mar 22:35
c09a430
Compare
Choose a tag to compare
  • Import dart:io unconditionally. More recent Dart SDK revisions allow
    dart:io to be imported in a browser context, though if methods are actually
    invoked, they will fail. This matches well with package:file, where users
    can use the memory library and get in-memory implementations of the
    dart:io interfaces.
  • Bump minimum Dart SDK to 1.24.0

2.3.7

01 Mar 18:33
273a1e7
Compare
Choose a tag to compare
  • Fix Dart 2 error.

2.3.5

22 Nov 01:52
Compare
Choose a tag to compare
  • Fix internal use of a cast which fails on Dart 2.0 .

2.3.4

13 Jul 19:34
Compare
Choose a tag to compare
  • Bumped maximum Dart SDK version to 2.0.0-dev.infinity

2.3.3

13 Jul 19:33
Compare
Choose a tag to compare
  • Relaxes version requirements on package:intl

2.3.2

27 Mar 19:23
Compare
Choose a tag to compare
  • Fixed FileSystem.directory(Uri), FileSystem.file(Uri), and
    FileSystem.link(Uri) to consult the file system's path context when
    converting the URI to a file path rather than using Uri.toFilePath().

2.3.1

15 Mar 18:45
Compare
Choose a tag to compare
  • Fixed MemoryFileSystem to make File.writeAs...() update the last modified
    time of the file.

2.3.0

27 Feb 21:30
Compare
Choose a tag to compare
  • Added the following convenience methods in Directory:
    • Directory.childDirectory(String basename)
    • Directory.childFile(String basename)
    • Directory.childLink(String basename)

2.2.0

23 Feb 19:57
Compare
Choose a tag to compare
  • Added ErrorCodes class, which holds errno values.