forked from mirrors/gecko-dev
Depends on D13115 Differential Revision: https://phabricator.services.mozilla.com/D13116 --HG-- rename : third_party/rust/khronos_api/api_webgl/extensions/WEBGL_compressed_texture_atc/extension.xml => third_party/rust/khronos_api/api_webgl/extensions/rejected/WEBGL_compressed_texture_atc/extension.xml rename : third_party/rust/khronos_api/api_webgl/extensions/WEBGL_get_buffer_sub_data_async/extension.xml => third_party/rust/khronos_api/api_webgl/extensions/rejected/WEBGL_get_buffer_sub_data_async/extension.xml rename : third_party/rust/khronos_api/api_webgl/extensions/WEBGL_shared_resources/extension.xml => third_party/rust/khronos_api/api_webgl/extensions/rejected/WEBGL_shared_resources/extension.xml extra : moz-landing-system : lando
2.5 KiB
2.5 KiB
Version 0.8.0
- Same as 0.7.1, with 0.7.1 being yanked because of the incorrect semver bump.
Version 0.7.1
- Removed dependency on bitflags.
- Added the
XmlWriter::inner_mut()method. - Fixed some rustdoc warnings.
Version 0.7.0
- Same as 0.6.2, with 0.6.2 being yanked because of the incompatible bump of minimum required version of rustc.
Version 0.6.2
- Bumped
bitflagsto 1.0.
Version 0.6.1
- Fixed the writer to escape some special characters when writing attribute values.
Version 0.6.0
- Changed the target type of extra entities from
chartoString. This is an incompatible change.
Version 0.5.0
- Added support for ignoring EOF errors in order to read documents from streams incrementally.
- Bumped
bitflagsto 0.9.
Version 0.4.1
- Added missing
Debugimplementation toxml::writer::XmlEvent.
Version 0.4.0
- Bumped version number, since changes introduced in 0.3.7 break backwards compatibility.
Version 0.3.8
- Fixed a problem introduced in 0.3.7 with entities in attributes causing parsing errors.
Version 0.3.7
- Fixed the problem with parsing non-whitespace character entities as whitespace (issue #140).
- Added support for configuring custom entities in the parser configuration.
Version 0.3.6
- Added an
Errorimplementation forEmitterError. - Fixed escaping of strings with multi-byte code points.
Version 0.3.5
- Added
Debugimplementation forXmlVersion. - Fixed some failing tests.
Version 0.3.3
- Updated
bitflagsto 0.7.
Version 0.3.2
- Added
From<io::Error>forxml::reader::Error, which improves usability of working with parsing errors.
Version 0.3.1
- Bumped
bitflagsdependency to 0.4, some internal warning fixes.
Version 0.3.0
- Changed error handling in
EventReader- now I/O errors are properly bubbled up from the lexer.
Version 0.2.4
- Fixed #112 - incorrect handling of namespace redefinitions when writing a document.
Version 0.2.3
- Added
into_inner()methods toEventReaderandEventWriter.
Version 0.2.2
- Using
joininstead of the deprecatedconnect. - Added a simple XML analyzer program which demonstrates library usage and can be used to check XML documents for well-formedness.
- Fixed incorrect handling of unqualified attribute names (#107).
- Added this changelog.
Version 0.2.1
- Fixed #105 - incorrect handling of double dashes.
Version 0.2.0
- Major update, includes proper document writing support and significant architecture changes.