summaryrefslogtreecommitdiffstats
path: root/rust/vendor/widestring/CHANGELOG.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 17:39:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 17:39:49 +0000
commita0aa2307322cd47bbf416810ac0292925e03be87 (patch)
tree37076262a026c4b48c8a0e84f44ff9187556ca35 /rust/vendor/widestring/CHANGELOG.md
parentInitial commit. (diff)
downloadsuricata-a0aa2307322cd47bbf416810ac0292925e03be87.tar.xz
suricata-a0aa2307322cd47bbf416810ac0292925e03be87.zip
Adding upstream version 1:7.0.3.upstream/1%7.0.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--rust/vendor/widestring/CHANGELOG.md93
1 files changed, 93 insertions, 0 deletions
diff --git a/rust/vendor/widestring/CHANGELOG.md b/rust/vendor/widestring/CHANGELOG.md
new file mode 100644
index 0000000..cc0aa13
--- /dev/null
+++ b/rust/vendor/widestring/CHANGELOG.md
@@ -0,0 +1,93 @@
+# Changelog
+
+The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
+and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
+
+## [Unreleased]
+
+## [0.4.3] - 2020-10-05 <a name="0.4.3"></a>
+### Fixed
+- Fixed undefined behaviours and cleaned up clippy warnings. By [@joshwd36].
+
+## [0.4.2] - 2020-06-09 <a name="0.4.2"></a>
+### Fixed
+- Fixed compile errors on pre-1.36.0 Rust due to unstable `alloc` crate. Minimum supported version
+ is Rust 1.34.2, the rust version for Debian stable. Fixes [#14].
+
+## [0.4.1] - 2020-06-08 <a name="0.4.1"></a>
+### ***Yanked***
+### Changed
+- Now supports `no_std`. Added the `std` and `alloc` features, enabled by default. `U16String`,
+ `U32String`, `U16CString`, and `U32CString` and their aliases all require the `alloc` or `std`
+ feature. By [@nicbn].
+
+## [0.4.0] - 2018-08-18 <a name="0.4.0"></a>
+### Added
+- New `U32String`, `U32Str`, `U32CString`, and `U32CStr` types for dealing with UTF-32 FFI. These
+ new types are roughly equivalent to the existing UTF-16 types.
+- `WideChar` is a type alias to `u16` on Windows but `u32` on non-Windows platforms.
+- The generic types `UString`, `UStr`, `UCString` and `UCStr` are used to implement the string
+ types.
+
+### Changed
+- **Breaking Change** Existing wide string types have been renamed to `U16String`, `U16Str`,
+ `U16CString`, and `U16CStr` (previously `WideString`, `WideStr`, etc.). Some function have
+ also been renamed to reflect this change (`wide_str` to `u16_str`, etc.).
+- **Breaking Change** `WideString`, `WideStr`, `WideCString`, and `WideCStr` are now type aliases
+ that vary between platforms. On Windows, these are aliases to the `U16` types and are equivalent
+ to the previous version, but on non-Windows platforms these alias the new `U32` types instead.
+ See crate documentation for more details.
+
+## [0.3.0] - 2018-03-17 <a name="0.3.0"></a>
+### Added
+- Additional unchecked functions on `WideCString`.
+- All types now implement `Default`.
+- `WideString::shrink_to_fit`
+- `WideString::into_boxed_wide_str` and `Box<WideStr>::into_wide_string`.
+- `WideCString::into_boxed_wide_c_str` and `Box<WideCStr>::into_wide_c_string`.
+- `From` and `Default` implementations for boxed `WideStr` and boxed `WideCStr`.
+
+### Changed
+- Renamed `WideCString::from_vec` to replace `WideCString::new`. To create empty string, use
+ `WideCString::default()` now.
+- `WideCString` now implements `Drop`, which sets the string to an empty string to prevent invalid
+ unsafe code from working correctly when it should otherwise break. Also see `Drop` implementation
+ of `CString`.
+- Writing changelog manually.
+- Upgraded winapi dev dependency.
+- Now requires at least Rust 1.17+ to compile (previously, was Rust 1.8).
+
+## [0.2.2] - 2016-09-09 <a name="0.2.2"></a>
+### Fixed
+- Make `WideCString::into_raw` correctly forget the original self.
+
+## [0.2.1] - 2016-08-12 <a name="0.2.1"></a>
+### Added
+- `into_raw`/`from_raw` on `WideCString`. Closes [#2].
+
+## [0.2.0] - 2016-05-31 <a name="0.2.0"></a>
+### Added
+- `Default` trait to wide strings.
+- Traits for conversion of strings to `Cow`.
+### Changed
+- Methods & traits to bring to parity with Rust 1.9 string APIs.
+
+## 0.1.0 - 2016-02-06 <a name="0.1.0"></a>
+### Added
+- Initial release.
+
+[#2]: https://github.com/starkat99/widestring-rs/issues/2
+[#14]: https://github.com/starkat99/widestring-rs/issues/14
+
+[@nicbn]: https://github.com/nicbn
+[@joshwd36]: https://github.com/joshwb36
+
+[Unreleased]: https://github.com/starkat99/widestring-rs/compare/v0.4.3...HEAD
+[0.4.3]: https://github.com/starkat99/widestring-rs/compare/v0.4.2...v0.4.3
+[0.4.2]: https://github.com/starkat99/widestring-rs/compare/v0.4.1...v0.4.2
+[0.4.1]: https://github.com/starkat99/widestring-rs/compare/v0.4.0...v0.4.1
+[0.4.0]: https://github.com/starkat99/widestring-rs/compare/v0.3.0...v0.4.0
+[0.3.0]: https://github.com/starkat99/widestring-rs/compare/v0.2.2...v0.3.0
+[0.2.2]: https://github.com/starkat99/widestring-rs/compare/v0.2.1...v0.2.2
+[0.2.1]: https://github.com/starkat99/widestring-rs/compare/v0.2.0...v0.2.1
+[0.2.0]: https://github.com/starkat99/widestring-rs/compare/v0.1.0...v0.2.0