- Add VariableSpec class with magnitude field validation - Add Formula class supporting multiple input/output variables - Support d4rt_code as string or object with code field - Add comprehensive tests for parsing and serialization - Fix broken test import in pruebas_d4rt_test.dart Follows README.md format requirements exactly
6.1 KiB
6.1 KiB
7.0.1
- Update the pubspec repository field to reflect the new package repository.
7.0.0
- Dart 3 fixes for class modifiers.
- Require Dart 3.0.
MemoryFileSystemnow treats empty paths as non-existent.- Fix
FileSystem.isLink/FileSystem.isLinkSyncto not follow symbolic links. - Make the return type of
MemoryFile.openReadand_ChrootFile.openReadagain match the return type fromdart:io.
6.1.4
- Populate the pubspec
repositoryfield.
6.1.3
- In classes that implement
Filemethodscreate,createSyncnow takebool exclusive = trueparameter. No functional changes.
6.1.2
MemoryFileSystemnow providesopHandles for exists operations.
6.1.1
MemoryFilenow providesopHandles for copy and open operations.
6.1.0
- Reading invalid UTF8 with the
MemoryFileSystemnow correctly throws aFileSystemExceptioninstead of aFormatError. MemoryFileSystemnow provides anopHandleto inspect read/write operations.MemoryFileSystemnow creates the temporary directory before returning increateTemp/createTempSync.
6.0.1
- Fix sound type error in memory backend when reading non-existent
MemoryDirectory.
6.0.0
- First stable null safe release.
6.0.0-nullsafety.4
- Update upper bound of SDK constraint.
6.0.0-nullsafety.3
- Update upper bound of SDK constraint.
6.0.0-nullsafety.2
- Make
ForwardingFile.openRead's return type again match the return type fromdart:io. - Remove some unnecessary
Uint8Listconversions inForwardingFile.
6.0.0-nullsafety.1
- Update to null safety.
- Remove record/replay functionality.
- Made
MemoryRandomAccessFileandMemoryFile.openWritehandle the file being removed or renamed while open. - Fixed incorrect formatting in
NoMatchingInvocationError.toString(). - Fixed more test flakiness.
- Enabled more tests.
- Internal cleanup.
- Remove implicit dynamic in preparation for null safety.
- Remove dependency on Intl.
5.2.1
- systemTemp directories created by
MemoryFileSystemwill allot names based on the file system instance instead of globally. MemoryFile.readAsLines()/readAsLinesSync()no longer treat a final newline in the file as the start of a new, empty line.RecordingFile.readAsLine()/readAsLinesSync()now always record a final newline.MemoryFile.flush()now returnsFuture<void>instead ofFuture<dynamic>.- Fixed some test flakiness.
- Enabled more tests.
- Internal cleanup.
5.2.0
- Added a
MemoryRandomAccessFileclass and implementedMemoryFile.open()/openSync().
5.1.0
- Added a new
MemoryFileSystemconstructor to use a test clock
5.0.10
- Added example
5.0.9
- Fix lints for project health
5.0.8
- Return
Uint8Listrather thanList<int>.
5.0.7
- Dart 2 fixes for
RecordingProxyMixinandReplayProxyMixin.
5.0.6
- Dart 2 fixes for
RecordingFile.open()
5.0.5
- Dart 2 fixes
5.0.4
- Update SDK constraint to 2.0.0-dev.67.0, remove workaround in recording_proxy_mixin.dart.
- Fix usage within Dart 2 runtime mode in Dart 2.0.0-dev.61.0 and later.
- Relax constraints on
package:test
5.0.3
- Update
package:testdependency to 1.0
5.0.2
- Declare compatibility with Dart 2 stable
5.0.1
- Remove upper case constants
- Update SDK constraint to 2.0.0-dev.54.0.
5.0.0
- Moved
testinglibrary into a dedicatedpackage:file_testingso that libraries don't need to take on a transitive dependency onpackage:testin order to usepackage:file.
4.0.1
- General library cleanup
- Add
stylesupport inMemoryFileSystem, so that callers can choose to have a memory file system with windows-like paths. [#68] (https://github.com/google/file.dart/issues/68)
4.0.0
- Change method signature for
RecordingRandomAccessFile._closeto return aFuture<void>instead ofFuture<RandomAccessFile>. This follows a change in dart:io, Dart SDK2.0.0-dev.40.
3.0.0
- Import
dart:iounconditionally. More recent Dart SDK revisions allowdart:ioto be imported in a browser context, though if methods are actually invoked, they will fail. This matches well withpackage:file, where users can use thememorylibrary and get in-memory implementations of thedart:iointerfaces. - Bump minimum Dart SDK to
1.24.0
2.3.7
- Fix Dart 2 error.
2.3.6
- Relax sdk upper bound constraint to '<2.0.0' to allow 'edge' dart sdk use.
2.3.5
- Fix internal use of a cast which fails on Dart 2.0 .
2.3.4
- Bumped maximum Dart SDK version to 2.0.0-dev.infinity
2.3.3
- Relaxes version requirements on
package:intl
2.3.2
- Fixed
FileSystem.directory(Uri),FileSystem.file(Uri), andFileSystem.link(Uri)to consult the file system's path context when converting the URI to a file path rather than usingUri.toFilePath().
2.3.1
- Fixed
MemoryFileSystemto makeFile.writeAs...()update the last modified time of the file.
2.3.0
- Added the following convenience methods in
Directory:Directory.childDirectory(String basename)Directory.childFile(String basename)Directory.childLink(String basename)
2.2.0
- Added
ErrorCodesclass, which holds errno values.
2.1.0
- Add support for new
dart:ioAPI methods added in Dart SDK 1.23
2.0.1
- Minor doc updates
2.0.0
- Improved
toStringimplementations in file system entity classes - Added
ForwardingFileSystemand associated forwarding classes to the mainfilelibrary - Removed
FileSystem.pathSeparator, and added a more comprehensiveFileSystem.pathproperty - Added
FileSystemEntity.basenameandFileSystemEntity.dirname - Added the
record_replaylibrary - Added the
testinglibrary
1.0.1
- Added
FileSystem.systemTempDirectory - Added the ability to pass
UriandFileSystemEntitytypes toFileSystem.directory(),FileSystem.file(), andFileSystem.link() - Added
FileSystem.pathSeparator
1.0.0
- Unified interface to match dart:io API
- Local file system implementation
- In-memory file system implementation
- Chroot file system implementation
0.1.0
- Initial version