- Run
dart formatwith the new style.
- Require Dart 3.4
- Add chunked decoding support (
startChunkedConversion) forCodePageencodings. - Upper-cast the return type of the decoder from
List<int>toUint8List. - Move to
dart-lang/coremonorepo.
- Require Dart 2.18
- Fix a number of comment references.
- Add a fixed-pattern DateTime formatter. See #210 in package:intl.
- Fix bug in
CodePageclass. See issue #47.
- Dependency clean-up.
- Stable null safety release.
- Added
CodePageclass for single-byteEncodingimplementations.
- Fixed a DDC compilation regression for consumers using the Dart 1.x SDK that
was introduced in
2.1.0.
- Added an
IdentityCodec<T>which implementsCodec<T,T>for use as default value for in functions accepting an optionalCodecas parameter.
- Set max SDK version to
<3.0.0, and adjust other dependencies.
PercentEncoderno longer encodes digits. This follows the specified behavior.
Note: No new APIs have been added in 2.0.0. Packages that would use 2.0.0 as
a lower bound should use 1.0.0 instead—for example, convert: ">=1.0.0 <3.0.0".
HexDecoder,HexEncoder,PercentDecoder, andPercentEncoderno longer extendChunkedConverter.
- Fix all strong-mode warnings.
- Add
AccumulatorSink,ByteAccumulatorSink, andStringAccumulatorSinkclasses for providing synchronous access to the output of chunked converters.
- Small improvement in percent decoder efficiency.
- Initial version