dtolnay/async-trait (async-trait)
### [`v0.1.83`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.83)
[Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.82...0.1.83)
- Prevent needless_arbitrary_self_type lint being produced in generated code ([#278](https://redirect.github.com/dtolnay/async-trait/issues/278))
### [`v0.1.82`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.82)
[Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.81...0.1.82)
- Prevent elided_named_lifetimes lint being produced in generated code ([#276](https://redirect.github.com/dtolnay/async-trait/issues/276))
### [`v0.1.81`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.81)
[Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.80...0.1.81)
- Turn off unneeded features of `syn` dependency ([#272](https://redirect.github.com/dtolnay/async-trait/issues/272), thanks [@klensy](https://redirect.github.com/klensy))
### [`v0.1.80`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.80)
[Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.79...0.1.80)
- Fix unreachable code warning for async functions that return `!` ([#265](https://redirect.github.com/dtolnay/async-trait/issues/265), thanks [@de-vri-es](https://redirect.github.com/de-vri-es))
### [`v0.1.79`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.79)
[Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.78...0.1.79)
- Clean up some dead code
### [`v0.1.78`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.78)
[Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.77...0.1.78)
- Prevent unused_qualifications lint being triggered in generated code in nightly-2024-03-05 and up ([#260](https://redirect.github.com/dtolnay/async-trait/issues/260))
### [`v0.1.77`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.77)
[Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.76...0.1.77)
- Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache
### [`v0.1.76`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.76)
[Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.75...0.1.76)
- Documentation improvements
### [`v0.1.75`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.75)
[Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.74...0.1.75)
- Documentation improvements
tokio-rs/bytes (bytes)
### [`v1.8.0`](https://redirect.github.com/tokio-rs/bytes/blob/HEAD/CHANGELOG.md#180-October-21-2024)
[Compare Source](https://redirect.github.com/tokio-rs/bytes/compare/v1.7.2...v1.8.0)
- Guarantee address in `split_off`/`split_to` for empty slices ([#740](https://redirect.github.com/tokio-rs/bytes/issues/740))
### [`v1.7.2`](https://redirect.github.com/tokio-rs/bytes/blob/HEAD/CHANGELOG.md#172-September-17-2024)
[Compare Source](https://redirect.github.com/tokio-rs/bytes/compare/v1.7.1...v1.7.2)
##### Fixed
- Fix default impl of `Buf::{get_int, get_int_le}` ([#732](https://redirect.github.com/tokio-rs/bytes/issues/732))
##### Documented
- Fix double spaces in comments and doc comments ([#731](https://redirect.github.com/tokio-rs/bytes/issues/731))
##### Internal changes
- Ensure BytesMut::advance reduces capacity ([#728](https://redirect.github.com/tokio-rs/bytes/issues/728))
### [`v1.7.1`](https://redirect.github.com/tokio-rs/bytes/blob/HEAD/CHANGELOG.md#171-August-1-2024)
[Compare Source](https://redirect.github.com/tokio-rs/bytes/compare/v1.7.0...v1.7.1)
This release reverts the following change due to a regression:
- Reuse capacity when possible in `::advance` impl ([#698](https://redirect.github.com/tokio-rs/bytes/issues/698))
The revert can be found at [#726](https://redirect.github.com/tokio-rs/bytes/issues/726).
### [`v1.7.0`](https://redirect.github.com/tokio-rs/bytes/blob/HEAD/CHANGELOG.md#170-July-31-2024)
[Compare Source](https://redirect.github.com/tokio-rs/bytes/compare/v1.6.1...v1.7.0)
##### Added
- Add conversion from `Bytes` to `BytesMut` ([#695](https://redirect.github.com/tokio-rs/bytes/issues/695), [#710](https://redirect.github.com/tokio-rs/bytes/issues/710))
- Add reclaim method without additional allocation ([#686](https://redirect.github.com/tokio-rs/bytes/issues/686))
##### Documented
- Clarify how `BytesMut::zeroed` works ([#714](https://redirect.github.com/tokio-rs/bytes/issues/714))
- Clarify the behavior of `Buf::chunk` ([#717](https://redirect.github.com/tokio-rs/bytes/issues/717))
##### Changed
- Change length condition of `BytesMut::truncate`
- Reuse capacity when possible in `::advance` impl ([#698](https://redirect.github.com/tokio-rs/bytes/issues/698))
- Improve `must_use` suggestion of `BytesMut::split` ([#699](https://redirect.github.com/tokio-rs/bytes/issues/699))
##### Internal changes
- Use `ManuallyDrop` instead of `mem::forget` ([#678](https://redirect.github.com/tokio-rs/bytes/issues/678))
- Don't set `len` in `BytesMut::reserve` ([#682](https://redirect.github.com/tokio-rs/bytes/issues/682))
- Optimize `Bytes::copy_to_bytes` ([#688](https://redirect.github.com/tokio-rs/bytes/issues/688))
- Refactor `BytesMut::truncate` ([#694](https://redirect.github.com/tokio-rs/bytes/issues/694))
- Refactor `BytesMut::resize` ([#696](https://redirect.github.com/tokio-rs/bytes/issues/696))
- Reorder assertion in `Bytes::split_to`, `Bytes::split_off` ([#689](https://redirect.github.com/tokio-rs/bytes/issues/689), [#693](https://redirect.github.com/tokio-rs/bytes/issues/693))
- Use `offset_from` in more places ([#705](https://redirect.github.com/tokio-rs/bytes/issues/705))
- Correct the wrong usage of `IntoIter` ([#707](https://redirect.github.com/tokio-rs/bytes/issues/707))
### [`v1.6.1`](https://redirect.github.com/tokio-rs/bytes/blob/HEAD/CHANGELOG.md#161-July-13-2024)
[Compare Source](https://redirect.github.com/tokio-rs/bytes/compare/v1.6.0...v1.6.1)
This release fixes a bug where `Bytes::is_unique` returns incorrect values when
the `Bytes` originates from a shared `BytesMut`. ([#718](https://redirect.github.com/tokio-rs/bytes/issues/718))
### [`v1.6.0`](https://redirect.github.com/tokio-rs/bytes/blob/HEAD/CHANGELOG.md#160-March-22-2024)
[Compare Source](https://redirect.github.com/tokio-rs/bytes/compare/v1.5.0...v1.6.0)
##### Added
- Add `Bytes::is_unique` ([#643](https://redirect.github.com/tokio-rs/bytes/issues/643))
##### Documented
- Fix changelog typo ([#628](https://redirect.github.com/tokio-rs/bytes/issues/628))
- Fix some spelling mistakes ([#633](https://redirect.github.com/tokio-rs/bytes/issues/633))
- Typo fix ([#637](https://redirect.github.com/tokio-rs/bytes/issues/637))
- Fix broken links ([#639](https://redirect.github.com/tokio-rs/bytes/issues/639))
- Add security policy ([#649](https://redirect.github.com/tokio-rs/bytes/issues/649))
##### Internal changes
- Move comment to correct constant ([#629](https://redirect.github.com/tokio-rs/bytes/issues/629))
- Various cleanup ([#635](https://redirect.github.com/tokio-rs/bytes/issues/635))
- Simplify `UninitSlice::as_uninit_slice_mut()` logic ([#644](https://redirect.github.com/tokio-rs/bytes/issues/644))
- Use `self.` instead of `Self::` ([#642](https://redirect.github.com/tokio-rs/bytes/issues/642))
- `BytesMut`: Assert alignment of `Shared` ([#652](https://redirect.github.com/tokio-rs/bytes/issues/652))
- Remove unnecessary namespace qualifier ([#660](https://redirect.github.com/tokio-rs/bytes/issues/660))
- Remove an unnecessary else branch ([#662](https://redirect.github.com/tokio-rs/bytes/issues/662))
- Remove unreachable else branch ([#661](https://redirect.github.com/tokio-rs/bytes/issues/661))
- make parameter mut in `From` ([#667](https://redirect.github.com/tokio-rs/bytes/issues/667))
- Restore commented tests ([#665](https://redirect.github.com/tokio-rs/bytes/issues/665))
- Use `sub` instead of `offset` ([#668](https://redirect.github.com/tokio-rs/bytes/issues/668))
- Calculate original capacity only if necessary ([#666](https://redirect.github.com/tokio-rs/bytes/issues/666))
- `set_vec_pos` does not need a second parameter ([#672](https://redirect.github.com/tokio-rs/bytes/issues/672))
- `get_vec_pos`: use `&self` instead of `&mut self` ([#670](https://redirect.github.com/tokio-rs/bytes/issues/670))
- Refactor `split_at`/`split_to` ([#663](https://redirect.github.com/tokio-rs/bytes/issues/663))
- Use `Iterator` from the prelude ([#673](https://redirect.github.com/tokio-rs/bytes/issues/673))
- `copy_to_bytes`: Add panic section to docs ([#676](https://redirect.github.com/tokio-rs/bytes/issues/676))
- Remove redundant reserve call ([#674](https://redirect.github.com/tokio-rs/bytes/issues/674))
- Use `ManuallyDrop` instead of `mem::forget` ([#675](https://redirect.github.com/tokio-rs/bytes/issues/675))
chronotope/chrono (chrono)
### [`v0.4.38`](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.38)
[Compare Source](https://redirect.github.com/chronotope/chrono/compare/v0.4.37...v0.4.38)
This release bring a ca. 20% improvement to the performance of the formatting code, and a convenient `days_since` method for the `Weekday` type.
Chrono 0.4.38 also removes the long deprecated `rustc-serialize` feature. Support for `rustc-serialize` will be [soft-destabilized in the next Rust edition](https://redirect.github.com/rust-lang/rust/pull/116016). Removing the feature will not break existing users of the feature; Cargo will just not update dependents that rely on it to newer versions of chrono.
In chrono 0.4.36 we made an accidental breaking change by switching to `derive(Copy)` for `DateTime` instead of a manual implementation. It is reverted in this release.
##### Removals
- Remove `rustc-serialize` feature ([#1548](https://redirect.github.com/chronotope/chrono/issues/1548), thanks [@workingjubilee](https://redirect.github.com/workingjubilee))
##### Additions
- Add `Weekday::days_since` ([#1249](https://redirect.github.com/chronotope/chrono/issues/1249), based on [#216](https://redirect.github.com/chronotope/chrono/issues/216) by [@clarfonthey](https://redirect.github.com/clarfonthey))
- Add `TimeDelta::checked_mul` and `TimeDelta::checked_div` ([#1565](https://redirect.github.com/chronotope/chrono/issues/1565), thanks [@Zomtir](https://redirect.github.com/Zomtir))
##### Fixes
- Return error when rounding with a zero duration ([#1474](https://redirect.github.com/chronotope/chrono/issues/1474), thanks [@Dav1dde](https://redirect.github.com/Dav1dde))
- Manually implement `Copy` for `DateTime` if offset is `Copy` ([#1573](https://redirect.github.com/chronotope/chrono/issues/1573))
##### Internal
- Inline `test_encodable_json` and `test_decodable_json` functions ([#1550](https://redirect.github.com/chronotope/chrono/issues/1550))
- CI: Reduce combinations in `cargo hack check` ([#1553](https://redirect.github.com/chronotope/chrono/issues/1553))
- Refactor formatting code ([#1335](https://redirect.github.com/chronotope/chrono/issues/1335))
- Optimize number formatting ([#1558](https://redirect.github.com/chronotope/chrono/issues/1558))
- Only package files needed for building and testing ([#1554](https://redirect.github.com/chronotope/chrono/issues/1554))
Thanks to all contributors on behalf of the chrono team, [@djc](https://redirect.github.com/djc) and [@pitdicker](https://redirect.github.com/pitdicker)!
### [`v0.4.37`](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.37)
[Compare Source](https://redirect.github.com/chronotope/chrono/compare/v0.4.36...v0.4.37)
Version 0.4.36 introduced an unexpected breaking change and was yanked. In it `LocalResult` was renamed to `MappedLocalTime` to avoid the impression that it is a `Result` type were some of the results are errors. For backwards compatibility a type alias with the old name was added.
As it turns out there is one case where a type alias behaves differently from the regular enum: you can't import enum variants from a type alias with `use chrono::LocalResult::*`. With 0.4.37 we make the new name `MappedLocalTime` the alias, but keep using it in function signatures and the documentation as much as possible.
See also the release notes of [chrono 0.4.36](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.36) from yesterday for the yanked release.
### [`v0.4.36`](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.36)
[Compare Source](https://redirect.github.com/chronotope/chrono/compare/v0.4.35...v0.4.36)
This release un-deprecates the methods on `TimeDelta` that were deprecated with the 0.4.35 release because of the churn they are causing for the ecosystem.
New is the `DateTime::with_time()` method. As an example of when it is useful:
```rust
use chrono::{Local, NaiveTime};
// Today at 12:00:00
let today_noon = Local::now().with_time(NaiveTime::from_hms_opt(12, 0, 0).unwrap());
```
##### Additions
- Add `DateTime::with_time()` ([#1510](https://redirect.github.com/chronotope/chrono/issues/1510))
##### Deprecations
- Revert `TimeDelta` deprecations ([#1543](https://redirect.github.com/chronotope/chrono/issues/1543))
- Deprecate `TimeStamp::timestamp_subsec_nanos`, which was missed in the 0.4.35 release ([#1486](https://redirect.github.com/chronotope/chrono/issues/1486))
##### Documentation
- Correct version number of deprecation notices ([#1486](https://redirect.github.com/chronotope/chrono/issues/1486))
- Fix some typos ([#1505](https://redirect.github.com/chronotope/chrono/issues/1505))
- Slightly improve serde documentation ([#1519](https://redirect.github.com/chronotope/chrono/issues/1519))
- Main documentation: simplify links and reflow text ([#1535](https://redirect.github.com/chronotope/chrono/issues/1535))
##### Internal
- CI: Lint benchmarks ([#1489](https://redirect.github.com/chronotope/chrono/issues/1489))
- Remove unnessary `Copy` and `Send` impls ([#1492](https://redirect.github.com/chronotope/chrono/issues/1492), thanks [@erickt](https://redirect.github.com/erickt))
- Backport streamlined `NaiveDate` unit tests ([#1500](https://redirect.github.com/chronotope/chrono/issues/1500), thanks [@Zomtir](https://redirect.github.com/Zomtir))
- Rename `LocalResult` to `TzResolution`, add alias ([#1501](https://redirect.github.com/chronotope/chrono/issues/1501))
- Update windows-bindgen to 0.55 ([#1504](https://redirect.github.com/chronotope/chrono/issues/1504))
- Avoid duplicate imports, which generate warnings on nightly ([#1507](https://redirect.github.com/chronotope/chrono/issues/1507))
- Add extra debug assertions to `NaiveDate::from_yof` ([#1518](https://redirect.github.com/chronotope/chrono/issues/1518))
- Some small simplifications to `DateTime::date_naive` and `NaiveDate::diff_months` ([#1530](https://redirect.github.com/chronotope/chrono/issues/1530))
- Remove `unwrap` in Unix `Local` type ([#1533](https://redirect.github.com/chronotope/chrono/issues/1533))
- Use different method to ignore feature-dependent doctests ([#1534](https://redirect.github.com/chronotope/chrono/issues/1534))
Thanks to all contributors on behalf of the chrono team, [@djc](https://redirect.github.com/djc) and [@pitdicker](https://redirect.github.com/pitdicker)!
### [`v0.4.35`](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.35)
[Compare Source](https://redirect.github.com/chronotope/chrono/compare/v0.4.34...v0.4.35)
Most of our efforts have shifted to improving the API for a 0.5 release, for which cleanups and refactorings are landing on the 0.4.x branch.
The most significant changes in this release are two sets of deprecations.
- We deprecated all timestamp-related methods on `NaiveDateTime`. The reason is that a timestamp is defined to be in UTC. The `NaiveDateTime` type doesn't know the offset from UTC, so it was technically wrong to have these methods. The alternative is to use the similar methods on the `DateTime` type, or from the `TimeZone` trait.
Converting from `NaiveDateTime` to `DateTime` is simple with `.and_utc()`, and in the other direction with `.naive_utc()`.
- The panicking constructors of `TimeDelta` (the new name of the `Duration` type) are deprecated. This was the last part of chrono that defaulted to panicking on error, dating from before rust 1.0.
- A nice change is that `NaiveDate` now includes a niche. So now `Option`, `Option` and `Option>` are the same size as their base types.
- `format::Numeric` and `format::Fixed` are marked as `non_exhaustive`. This will allow us to improve our formatting and parsing support, and we have reason to believe this breaking change will have little to no impact on users.
##### Additions
- Add `DateTime::{from_timestamp_micros, from_timestamp_nanos}` ([#1234](https://redirect.github.com/chronotope/chrono/issues/1234))
- Add getters to `Parsed` ([#1465](https://redirect.github.com/chronotope/chrono/issues/1465))
##### Deprecations
- Deprecate timestamp methods on `NaiveDateTime` ([#1473](https://redirect.github.com/chronotope/chrono/issues/1473))
- Deprecate panicking constructors of `TimeDelta` ([#1450](https://redirect.github.com/chronotope/chrono/issues/1450))
##### Changes/fixes
- Use `NonZeroI32` inside `NaiveDate` ([#1207](https://redirect.github.com/chronotope/chrono/issues/1207))
- Mark `format::Numeric` and `format::Fixed` as `non_exhaustive` ([#1430](https://redirect.github.com/chronotope/chrono/issues/1430))
- `Parsed` fixes to error values ([#1439](https://redirect.github.com/chronotope/chrono/issues/1439))
- Use `overflowing_naive_local` in `DateTime::checked_add*` ([#1333](https://redirect.github.com/chronotope/chrono/issues/1333))
- Do complete range checks in `Parsed::set_*` ([#1465](https://redirect.github.com/chronotope/chrono/issues/1465))
##### Documentation
- Rustfmt doctests ([#1452](https://redirect.github.com/chronotope/chrono/issues/1452))
- Improve docs for crate features ([#1455](https://redirect.github.com/chronotope/chrono/issues/1455), thanks [@edmorley](https://redirect.github.com/edmorley))
- Add more documentation and examples to `Parsed` ([#1439](https://redirect.github.com/chronotope/chrono/issues/1439))
##### Internal
- Refactor `internals` module ([#1428](https://redirect.github.com/chronotope/chrono/issues/1428), [#1429](https://redirect.github.com/chronotope/chrono/issues/1429), [#1431](https://redirect.github.com/chronotope/chrono/issues/1431), [#1432](https://redirect.github.com/chronotope/chrono/issues/1432), [#1433](https://redirect.github.com/chronotope/chrono/issues/1433), [#1438](https://redirect.github.com/chronotope/chrono/issues/1438))
- CI: test cross-compiling to `x86_64-unknown-illumos` instead of Solaris ([#1437](https://redirect.github.com/chronotope/chrono/issues/1437))
- CI: lint Windows target, fix clippy warning ([#1441](https://redirect.github.com/chronotope/chrono/issues/1441))
- CI: only run `cargo hack check` on Linux ([#1442](https://redirect.github.com/chronotope/chrono/issues/1442))
- Update windows-bindgen to 0.54 ([#1462](https://redirect.github.com/chronotope/chrono/issues/1462), [#1483](https://redirect.github.com/chronotope/chrono/issues/1483))
- Simplify error value of `parse_internal` ([#1459](https://redirect.github.com/chronotope/chrono/issues/1459))
- Simplify `SerdeError` ([#1458](https://redirect.github.com/chronotope/chrono/issues/1458))
- Simplify `NaiveDate::from_isoywd` a bit ([#1464](https://redirect.github.com/chronotope/chrono/issues/1464))
Thanks to all contributors on behalf of the chrono team, [@djc](https://redirect.github.com/djc) and [@pitdicker](https://redirect.github.com/pitdicker)!
### [`v0.4.34`](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.34)
[Compare Source](https://redirect.github.com/chronotope/chrono/compare/v0.4.33...v0.4.34)
##### Notable changes
- In chrono 0.4.34 we finished the work to make all methods const where doing so is supported by rust 1.61.
- We renamed the `Duration` type to `TimeDelta`. This removes the confusion between chrono's type and the later `Duration` type in the standard library. It will remain available under the old name as a type alias for compatibility.
- The Windows implementation of `Local` is rewritten. The new version avoids panics when the date is outside of the range supported by windows (the years 1601 to 30828), and gives more accurate results during DST transitions.
- The `Display` format of `TimeDelta` is modified to conform better to ISO 8601. Previously it converted all values greater than 24 hours to a value with days. This is not correct, as doing so changes the duration from an 'accurate' to a 'nominal' representation to use ISO 8601 terms.
##### Fixes
- Add missing range check in `TimeDelta::milliseconds` ([#1385](https://redirect.github.com/chronotope/chrono/issues/1385), thanks [@danwilliams](https://redirect.github.com/danwilliams))
- Remove check for `DurationExceedsTimestamp` in `DurationRound` ([#1403](https://redirect.github.com/chronotope/chrono/issues/1403), thanks [@joroKr21](https://redirect.github.com/joroKr21))
- Fix localized formatting with `%X` ([https://github.com/chronotope/pure-rust-locales/pull/12](https://redirect.github.com/chronotope/pure-rust-locales/pull/12), [#1420](https://redirect.github.com/chronotope/chrono/issues/1420))
- Windows: base implementation on `GetTimeZoneInformationForYear` ([#1017](https://redirect.github.com/chronotope/chrono/issues/1017))
##### Additions
- Add `TimeDelta::try_milliseconds` ([#1385](https://redirect.github.com/chronotope/chrono/issues/1385), thanks [@danwilliams](https://redirect.github.com/danwilliams))
- Add `TimeDelta::new` ([#1337](https://redirect.github.com/chronotope/chrono/issues/1337))
- Add `StrftimeItems::{parse, parse_to_owned}` and more documentation ([#1184](https://redirect.github.com/chronotope/chrono/issues/1184))
- More standard traits and documentation for `format::Locale` (via [https://github.com/chronotope/pure-rust-locales/pull/8](https://redirect.github.com/chronotope/pure-rust-locales/pull/8))
##### Changes
- Rename `Duration` to `TimeDelta`, add type alias ([#1406](https://redirect.github.com/chronotope/chrono/issues/1406))
- Make `TimeDelta` methods const ([#1337](https://redirect.github.com/chronotope/chrono/issues/1337))
- Make remaining methods of `NaiveDate`, `NaiveWeek`, `NaiveTime` and `NaiveDateTime` const where possible ([#1337](https://redirect.github.com/chronotope/chrono/issues/1337))
- Make methods on `DateTime` const where possible ([#1400](https://redirect.github.com/chronotope/chrono/issues/1400))
- Make `Display` format of `TimeDelta` conform better to ISO 8601 ([#1328](https://redirect.github.com/chronotope/chrono/issues/1328))
##### Documentation
- Fix the formatting of `timestamp_micros`'s Example doc ([#1338](https://redirect.github.com/chronotope/chrono/issues/1338) via [#1386](https://redirect.github.com/chronotope/chrono/issues/1386), thanks [@emikitas](https://redirect.github.com/emikitas))
- Specify branch for GitHub Actions badge and fix link ([#1388](https://redirect.github.com/chronotope/chrono/issues/1388))
- Don't mention some deprecated methods in docs ([#1395](https://redirect.github.com/chronotope/chrono/issues/1395))
- Remove stray documentation from main ([#1397](https://redirect.github.com/chronotope/chrono/issues/1397))
- Improved documentation of `TimeDelta` constructors ([#1385](https://redirect.github.com/chronotope/chrono/issues/1385), thanks [@danwilliams](https://redirect.github.com/danwilliams))
##### Internal
- Switch branch names: 0.4.x releases are the `main` branch, work on 0.5 happens in the `0.5.x` branch ([#1390](https://redirect.github.com/chronotope/chrono/issues/1390), [#1402](https://redirect.github.com/chronotope/chrono/issues/1402)).
- Don't use deprecated method in `impl Arbitrary for DateTime` and set up CI test ([#1336](https://redirect.github.com/chronotope/chrono/issues/1336))
- Remove workaround for Rust < 1.61 ([#1393](https://redirect.github.com/chronotope/chrono/issues/1393))
- Bump `codecov/codecov-action` from 3 to 4 ([#1404](https://redirect.github.com/chronotope/chrono/issues/1404))
- Remove partial support for handling `-0000` offset ([#1411](https://redirect.github.com/chronotope/chrono/issues/1411))
- Move `TOO_LONG` error out of `parse_internal` ([#1419](https://redirect.github.com/chronotope/chrono/issues/1419))
Thanks to all contributors on behalf of the chrono team, [@djc](https://redirect.github.com/djc) and [@pitdicker](https://redirect.github.com/pitdicker)!
### [`v0.4.33`](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.33)
[Compare Source](https://redirect.github.com/chronotope/chrono/compare/v0.4.32...v0.4.33)
This release fixes the broken docrs.rs build of [chrono 0.4.32](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.32).
##### What's Changed
- Make `rkyv` feature imply `size_32` ([#1383](https://redirect.github.com/chronotope/chrono/issues/1383))
- Fixed typo in `Duration::hours()` exception ([#1384](https://redirect.github.com/chronotope/chrono/issues/1384), thanks [@danwilliams](https://redirect.github.com/danwilliams))
### [`v0.4.32`](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.32)
[Compare Source](https://redirect.github.com/chronotope/chrono/compare/v0.4.31...v0.4.32)
In this release we shipped part of the effort to reduce the number of methods that could unexpectedly panic, notably for the `DateTime` and `Duration` types.
Chrono internally stores the value of a `DateTime` in UTC, and transparently converts it to the local value as required. For example adding a second to a `DateTime` needs to be done in UTC to get the correct result, but adding a day needs to be done in local time to be correct. What happens when the value is near the edge of the representable range, and the implicit conversions pushes it beyond the representable range? *Many* methods could panic on such inputs, including formatting the value for `Debug` output.
In chrono 0.4.32 the range of `NaiveDate`, `NaiveDateTime` and `DateTime` is made slightly smaller. This allows us to always do the implicit conversion, and in many cases return the expected result. Specifically the range is now from January 1, -262144 until December 31, 262143, one year less on both sides than before. We expect this may trip up tests if you hardcoded the `MIN` and `MAX` dates.
`Duration` had a similar issue. The range of this type was pretty arbitrary picked to match the range of an `i64` in milliseconds. Negating an `i64::MIN` pushes a value out of range, and in the same way negating `Duration::MIN` could push it out of our defined range and cause a panic. This turns out to be somewhat common and hidden behind many layers of abstraction. We adjusted the type to have a minimum value of `-Duration::MAX` instead and prevent the panic case.
Other highlights:
- `Duration` gained new fallible initialization methods.
- Better support for `rkyv`.
- Most methods on `NaiveDateTime` are now const.
- We had to bump our MSRV to 1.61 to keep building with our dependencies. This will also allow us to make more methods on `DateTime` const in a future release.
Complete list of changes:
##### Fixes
- Fix panic in `TimeZone::from_local_datetime` ([#1071](https://redirect.github.com/chronotope/chrono/issues/1071))
- Fix out of range panics in `DateTime` getters and setters ([#1317](https://redirect.github.com/chronotope/chrono/issues/1317), [#1329](https://redirect.github.com/chronotope/chrono/issues/1329))
##### Additions
- Add `NaiveDateTime::checked_(add|sub)_offset` ([#1313](https://redirect.github.com/chronotope/chrono/issues/1313))
- Add `DateTime::to_utc` ([#1325](https://redirect.github.com/chronotope/chrono/issues/1325))
- Derive `Default` for `Duration` ([#1327](https://redirect.github.com/chronotope/chrono/issues/1327))
- Add `Duration::subsec_nanos` ([#1327](https://redirect.github.com/chronotope/chrono/issues/1327))
- Add `try_*` builders to `Duration` ([#1327](https://redirect.github.com/chronotope/chrono/issues/1327))
- Implement `AddAssign` and `SubAssign` for `Duration` ([#1327](https://redirect.github.com/chronotope/chrono/issues/1327))
- Make methods on `NaiveDateTime` const where possible ([#1286](https://redirect.github.com/chronotope/chrono/issues/1286))
- Split `clock` feature into `clock` and `now` ([#1343](https://redirect.github.com/chronotope/chrono/issues/1343), thanks [@mmastrac](https://redirect.github.com/mmastrac))
- Add `From` for `NaiveDateTime` ([#1355](https://redirect.github.com/chronotope/chrono/issues/1355), thanks [@dcechano](https://redirect.github.com/dcechano))
- Add `NaiveDateTime::from_timestamp_nanos` ([#1357](https://redirect.github.com/chronotope/chrono/issues/1357), thanks [@Ali-Mirghasemi](https://redirect.github.com/Ali-Mirghasemi))
- Add `Months::num_months()` and `num_years()` ([#1373](https://redirect.github.com/chronotope/chrono/issues/1373), thanks [@danwilliams](https://redirect.github.com/danwilliams))
- Add `DateTime::from_timestamp_millis` ([#1374](https://redirect.github.com/chronotope/chrono/issues/1374), thanks [@xmakro](https://redirect.github.com/xmakro))
##### Changes
- Fix panic in `Duration::MIN.abs()` (adjust `Duration::MIN` by 1 millisecond) ([#1334](https://redirect.github.com/chronotope/chrono/issues/1334))
- Bump MSRV to 1.61 ([#1347](https://redirect.github.com/chronotope/chrono/issues/1347))
- Update windows-targets requirement from 0.48 to 0.52 ([#1360](https://redirect.github.com/chronotope/chrono/issues/1360))
- Update windows-bindgen to 0.52 ([#1379](https://redirect.github.com/chronotope/chrono/issues/1379))
##### Deprecations
- Deprecate standalone `format` functions ([#1306](https://redirect.github.com/chronotope/chrono/issues/1306))
##### Documentation
- Improve doc comment and tests for timestamp_nanos_opt ([#1299](https://redirect.github.com/chronotope/chrono/issues/1299), thanks [@mlegner](https://redirect.github.com/mlegner))
- Switch to `doc_auto_cfg` ([#1305](https://redirect.github.com/chronotope/chrono/issues/1305), [#1326](https://redirect.github.com/chronotope/chrono/issues/1326))
- Document panics in `Add`/`Sub` impls and use `expect` ([#1316](https://redirect.github.com/chronotope/chrono/issues/1316))
- Improve types listed in top-level documentation ([#1274](https://redirect.github.com/chronotope/chrono/issues/1274))
- Improve deprecation note of `TimeZone::datetime_from_str` ([#1342](https://redirect.github.com/chronotope/chrono/issues/1342), thanks [@tmccombs](https://redirect.github.com/tmccombs))
- Fix typos in `Datelike` impl for `DateTime` ([#1376](https://redirect.github.com/chronotope/chrono/issues/1376), thanks [@ElectrifyPro](https://redirect.github.com/ElectrifyPro))
##### Rkyv support
- Export `Archived*` types in `rkyv` module ([#1304](https://redirect.github.com/chronotope/chrono/issues/1304))
- Duplicate derives on `Archived*` types ([#1271](https://redirect.github.com/chronotope/chrono/issues/1271), thanks [@Awpteamoose](https://redirect.github.com/Awpteamoose))
- Archive derive of PartialEq for rkyv ([#959](https://redirect.github.com/chronotope/chrono/issues/959), thanks [@mkatychev](https://redirect.github.com/mkatychev))
- Expose rkyv features as features for chrono users ([#1368](https://redirect.github.com/chronotope/chrono/issues/1368), thanks [@gz](https://redirect.github.com/gz))
##### Changes to unstable features
- Don't let `unstable-locales` imply the `alloc` feature ([#1307](https://redirect.github.com/chronotope/chrono/issues/1307))
- Remove `format::{format_localized, format_item_localized}` ([#1311](https://redirect.github.com/chronotope/chrono/issues/1311))
- Inline `write_rfc2822_inner`, don't localize ([#1322](https://redirect.github.com/chronotope/chrono/issues/1322))
##### Internal
- Add benchmark for `DateTime::with_*` ([#1309](https://redirect.github.com/chronotope/chrono/issues/1309))
- Fix `*_DAYS_FROM_YEAR_0` calculation ([#1312](https://redirect.github.com/chronotope/chrono/issues/1312))
- Add `NaiveTime::overflowing_(add|sub)_offset` ([#1310](https://redirect.github.com/chronotope/chrono/issues/1310))
- Rewrite `DateTime::overflowing_(add|sub)_offset` ([#1069](https://redirect.github.com/chronotope/chrono/issues/1069))
- Tests calling date command `set env LC_ALL` ([#1315](https://redirect.github.com/chronotope/chrono/issues/1315), thanks [@jtmoon79](https://redirect.github.com/jtmoon79))
- Update `deny.toml` ([#1320](https://redirect.github.com/chronotope/chrono/issues/1320))
- Bump actions/setup-node from 3 to 4 ([#1346](https://redirect.github.com/chronotope/chrono/issues/1346))
- test.yml remove errant `with: node-version` ([#1352](https://redirect.github.com/chronotope/chrono/issues/1352), thanks [@jtmoon79](https://redirect.github.com/jtmoon79))
- CI Linting: Fix missing sources checkout in `toml` job ([#1371](https://redirect.github.com/chronotope/chrono/issues/1371), thanks [@gibbz00](https://redirect.github.com/gibbz00))
- Silence clippy lint for test code with Rust 1.74.0 ([#1362](https://redirect.github.com/chronotope/chrono/issues/1362))
Thanks to all contributors on behalf of the chrono team, [@djc](https://redirect.github.com/djc) and [@pitdicker](https://redirect.github.com/pitdicker)!
eyre-rs/eyre (color-eyre)
### [`v0.6.3`](https://redirect.github.com/eyre-rs/eyre/compare/v0.6.2...color-eyre-v0.6.3)
[Compare Source](https://redirect.github.com/eyre-rs/eyre/compare/v0.6.2...color-eyre-v0.6.3)
SergioBenitez/cookie-rs (cookie)
### [`v0.18.1`](https://redirect.github.com/SergioBenitez/cookie-rs/blob/HEAD/CHANGELOG.md#Version-0181-Mar-25-2024)
[Compare Source](https://redirect.github.com/SergioBenitez/cookie-rs/compare/0.18.0...0.18.1)
##### New Features
- Added support for the draft `Partitioned` attribute.
The new `CookieBuilder::partition()`, `Cookie::partitioned()`, and
`Cookie::set_partitioned()` methods allow enabling and/or disabling the
attribute. Additionally, the attribute is recognized during parsing.
- Added `CookieBuilder::removal()`, counterpart to `Cookie::make_removal()`.
JelteF/derive_more (derive_more)
### [`v0.99.18`](https://redirect.github.com/JelteF/derive_more/compare/v0.99.17...v0.99.18)
[Compare Source](https://redirect.github.com/JelteF/derive_more/compare/v0.99.17...v0.99.18)
rust-lang/futures-rs (futures)
### [`v0.3.31`](https://redirect.github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0331---2024-10-05)
[Compare Source](https://redirect.github.com/rust-lang/futures-rs/compare/0.3.30...0.3.31)
- Fix use after free of task in `FuturesUnordered` when dropped future panics ([#2886](https://redirect.github.com/rust-lang/futures-rs/issues/2886))
- Fix soundness bug in `task::waker_ref` ([#2830](https://redirect.github.com/rust-lang/futures-rs/issues/2830))
This is a breaking change but allowed because it is soundness bug fix.
- Fix bugs in `AsyncBufRead::read_line` and `AsyncBufReadExt::lines` ([#2884](https://redirect.github.com/rust-lang/futures-rs/issues/2884))
- Fix parsing issue in `select!`/`select_biased!` ([#2832](https://redirect.github.com/rust-lang/futures-rs/issues/2832))
This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
- Work around issue due to upstream `Waker::will_wake` change ([#2865](https://redirect.github.com/rust-lang/futures-rs/issues/2865))
- Add `stream::Iter::{get_ref,get_mut,into_inner}` ([#2875](https://redirect.github.com/rust-lang/futures-rs/issues/2875))
- Add `future::AlwaysReady` ([#2825](https://redirect.github.com/rust-lang/futures-rs/issues/2825))
- Relax trait bound on non-constructor methods of `io::{BufReader,BufWriter}` ([#2848](https://redirect.github.com/rust-lang/futures-rs/issues/2848))
### [`v0.3.30`](https://redirect.github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0330---2023-12-24)
[Compare Source](https://redirect.github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30)
**Note:** This release of futures-util has been yanked due to a bug fixed in 0.3.31 and a compile failure with futures-task 0.3.31 and later.
- Add `{BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of` ([#2797](https://redirect.github.com/rust-lang/futures-rs/issues/2797))
- Fix panic in `FuturesUnordered::clear` ([#2809](https://redirect.github.com/rust-lang/futures-rs/issues/2809))
- Fix panic in `AsyncBufReadExt::fill_buf` ([#2801](https://redirect.github.com/rust-lang/futures-rs/issues/2801), [#2812](https://redirect.github.com/rust-lang/futures-rs/issues/2812))
- Improve support for targets without atomic CAS ([#2811](https://redirect.github.com/rust-lang/futures-rs/issues/2811))
- Remove build scripts ([#2811](https://redirect.github.com/rust-lang/futures-rs/issues/2811))
svartalf/hostname (hostname)
### [`v0.4.0`](https://redirect.github.com/svartalf/hostname/blob/HEAD/CHANGELOG.md#040---2024-04-01)
[Compare Source](https://redirect.github.com/svartalf/hostname/compare/v0.3.1...v0.4.0)
##### Added
- CI setup now covers almost all supported Tier 1 and Tier 2 platform targets
##### Changed
- Minimum Supported Rust version set to `1.67.0`
- Rust edition set to "2021"
##### Fixed
- Handle edge cases for POSIX systems ([#14](https://redirect.github.com/svartalf/hostname/issues/14))
- docs.rs documentation build
image-rs/image (image)
### [`v0.25.5`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0255)
[Compare Source](https://redirect.github.com/image-rs/image/compare/v0.25.4...v0.25.5)
Features:
- Added support for decoding 10-bit and 12-bit AVIF
- Initial, opt-in serde support for an enum. This may be extended to other types in the future.
Bug fixes:
- [Multiple bug fixes in AVIF decoding](https://redirect.github.com/image-rs/image/pull/2373)
- The `rayon` feature now correctly toggles the use of `rayon` when encoding AVIF. (Previously it would be either always on or always off depending on the version of the `ravif` crate in your dependency tree.)
- "jfif" file extension for JPEG images is now recognized
### [`v0.25.4`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0254)
[Compare Source](https://redirect.github.com/image-rs/image/compare/v0.25.3...v0.25.4)
Features:
- Much faster decoding of lossless WebP due to a variety of optimizations. Our benchmarks show 2x to 2.5x improvement.
- Added support for orientation metadata, so that e.g. smartphone camera images could be displayed correctly:
- Added `ImageDecoder::orientation()` and implemented orientation metadata extraction for JPEG, WebP and TIFF formats
- Added `DynamicImage::apply_orientation()` to apply the orientation to an image
- Added support for extracting Exif metadata from images via `ImageDecoder::exif_metadata()`, and implemented it for JPEG and WebP formats
- Added `ImageEncoder::set_icc_profile()` and implemented it for WebP format. Pull requests with implementations for other formats are welcome.
- Added `DynamicImage::fast_blur()` for a linear-time approximation of Gaussian blur, which is much faster at larger blur radii
Bug fixes:
- Fixed some APNG images being decoded incorrectly
- Fixed the iterator over animated WebP frames to return `None` instead of an error when the end of the animation is reached
### [`v0.25.3`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0253)
[Compare Source](https://redirect.github.com/image-rs/image/compare/v0.25.2...v0.25.3)
Yanked! This version accidentally missed a commit that should have been
included with the release. The `Orientation` struct should be in the
appropriate module instead of the top-level. This release won't be supported.
### [`v0.25.2`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0252)
[Compare Source](https://redirect.github.com/image-rs/image/compare/v0.25.1...v0.25.2)
Features:
- Added the HDR encoder to supported formats in generic write methods with the
`hdr` feature enabled. Supports 32-bit float RGB color only, for now.
- When cloning `ImageBuffer`, `DynamicImage` and `Frame` the existing buffer
will now be reused if possible.
- Added `image::ImageReader` as an alias.
- Implement `ImageEncoder` for `HdrEncoder`.
Structural changes
- Switch from `byteorder` to `byteorder-lite`, consolidating some casting
unsafety to `bytemuck`.
- Many methods on `DynamicImage` and buffers gained `#[must_use]` indications.
Bug fixes:
- Removed test data included in the crate archive.
- The WebP animation decoder stops when reaching the indicate frame count.
- Fixed bugs in the `bmp` decoder.
- Format support gated on the `exr` feature now compiles in isolation.
### [`v0.25.1`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0251)
[Compare Source](https://redirect.github.com/image-rs/image/compare/v0.25.0...v0.25.1)
Bug fixes:
- Fixed corrupt JPEG output when attempting to encode images containing an alpha
channel.
- Only accept ".ff" file extension for farbfeld images.
- Correct farbfeld feature flag for `ImageFormat::{reading_enabled, writing_enabled}`.
- Disable strict mode for JPEG decoder.
- Add nasm feature to optionally enable faster AVIF encoding.
### [`v0.25.0`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0250)
[Compare Source](https://redirect.github.com/image-rs/image/compare/v0.24.9...v0.25.0)
Breaking changes:
- Added `BufRead` + `Seek` bound on many decoders.
- Use `ExtendedColorType` instead of `ColorType` when encoding.
- Removed `ImageOutputFormat`, `GenericImageView::bounds`, and several other
deprecated items.
- Removed incremental decoding support and changed `ImageDecoder` so the trait
is object safe.
- Pixel types are now `repr(transparent)` rather than `repr(C)`.
- Made color_quant dependency optional.
- Renamed some feature flags.
Structural changes:
- Increased MSRV to 1.67.1
Codec changes:
- Switched to image-webp for WebP encoding.
- Switched to zune-jpeg for JPEG decoding.
- Made the HDR decoder produce f32 images.
- Removed DXT encoding and decoding support.
### [`v0.24.9`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0249)
[Compare Source](https://redirect.github.com/image-rs/image/compare/v0.24.8...v0.24.9)
Structural changes:
- Relicense to MIT OR Apache-2.0
- Increase MSRV 1.63.0
New features:
- Support limits in PNG animation decoding.
- Added offsets to SubImage to compensate for the now-deprecated bounds call
from GenericImageView.
Bug fixes:
- Correct limit tests for TIFF.
- Avoid overflow in gif::Decoder::buffer_size.
- Return error instead of using asssertion for Avif decoder unsupported or
invalid bit depth.
### [`v0.24.8`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0248)
[Compare Source](https://redirect.github.com/image-rs/image/compare/v0.24.7...v0.24.8)
New features:
- Added pure-Rust lossless WebP encoding.
- Added `DynamicImage::new` method.
- Added `PngDecoder::gamma_value` method.
- Added `ImageFormat::{reading_enabled, writing_enabled, all}`.
- TGA encoder now supports RLE encoding.
- Add rayon parallel iterators behind an optional `rayon` feature.
- Support CMYK TIFF images.
- Implement `From` for all image types.
Bug fixes:
- Fix decoding pngs with invalid text chunks.
- Handle non-fatal error dav1d::Error::Again.
- Do not round floats in interpolate.
- PNM decoder now scales samples according to specified maximum.
- Fix wrong implementation of unsharpen filter.
- Fix `GifDecoder::with_limits` to raise an error when limits are exceeded.
rust-lang-nursery/lazy-static.rs (lazy_static)
### [`v1.5.0`](https://redirect.github.com/rust-lang-nursery/lazy-static.rs/compare/1.4.0...1.5.0)
[Compare Source](https://redirect.github.com/rust-lang-nursery/lazy-static.rs/compare/1.4.0...1.5.0)
jeromefroe/lru-rs (lru)
### [`v0.12.5`](https://redirect.github.com/jeromefroe/lru-rs/blob/HEAD/CHANGELOG.md#v0125---2024-10-30)
[Compare Source](https://redirect.github.com/jeromefroe/lru-rs/compare/0.12.4...0.12.5)
- Upgrade hashbrown dependency to 0.15.
### [`v0.12.4`](https://redirect.github.com/jeromefroe/lru-rs/blob/HEAD/CHANGELOG.md#v0124---2024-07-30)
[Compare Source](https://redirect.github.com/jeromefroe/lru-rs/compare/0.12.3...0.12.4)
- Add methods that take a reference to the key that should be inserted.
### [`v0.12.3`](https://redirect.github.com/jeromefroe/lru-rs/blob/HEAD/CHANGELOG.md#v0123---2024-02-24)
[Compare Source](https://redirect.github.com/jeromefroe/lru-rs/compare/0.12.2...0.12.3)
- Add `get_key_value_mut` method.
### [`v0.12.2`](https://redirect.github.com/jeromefroe/lru-rs/blob/HEAD/CHANGELOG.md#v0122---2024-01-28)
[Compare Source](https://redirect.github.com/jeromefroe/lru-rs/compare/0.12.1...0.12.2)
- Add `clone` method.
Ogeon/palette (palette)
### [`v0.7.6`](https://redirect.github.com/Ogeon/palette/blob/HEAD/CHANGELOG.md#Version-076---2024-04-28)
[Compare Source](https://redirect.github.com/Ogeon/palette/compare/0.7.5...0.7.6)
- \[[#390](https://redirect.github.com/Ogeon/palette/issues/390)]\[390]: Add `From` implementations for changing `Rgb` component types between `u8`, `f32` and `f64`.
- \[[#342](https://redirect.github.com/Ogeon/palette/issues/342)]\[342]: Implement CAM16. Closes \[[#199](https://redirect.github.com/Ogeon/palette/issues/199)]\[199].
- \[[#386](https://redirect.github.com/Ogeon/palette/issues/386)]\[386]: Fix angle conversion from `f32` to `u8`. Closes \[[#385](https://redirect.github.com/Ogeon/palette/issues/385)]\[385].
- \[[#384](https://redirect.github.com/Ogeon/palette/issues/384)]\[384]: Add traits for color schemes from traditional color theory.
### [`v0.7.5`](https://redirect.github.com/Ogeon/palette/blob/HEAD/CHANGELOG.md#Version-075---2024-02-25)
[Compare Source](https://redirect.github.com/Ogeon/palette/compare/0.7.4...0.7.5)
- \[[#380](https://redirect.github.com/Ogeon/palette/issues/380)]\[380]: Avoid recursive trait resolution for `IntoIterator`. Closes \[[#283](https://redirect.github.com/Ogeon/palette/issues/283)]\[283].
### [`v0.7.4`](https://redirect.github.com/Ogeon/palette/blob/HEAD/CHANGELOG.md#Version-074---2024-01-28)
[Compare Source](https://redirect.github.com/Ogeon/palette/compare/0.7.3...0.7.4)
- \[[#373](https://redirect.github.com/Ogeon/palette/issues/373)]\[373]: Add an "alloc" feature and make tests work with any feature combination. Closes \[[#366](https://redirect.github.com/Ogeon/palette/issues/366)]\[366].
- \[[#374](https://redirect.github.com/Ogeon/palette/issues/374)]\[374]: Fix typo about max range of u8. Closes \[[#1234](https://redirect.github.com/Ogeon/palette/issues/1234)]\[1234], \[[#4321](https://redirect.github.com/Ogeon/palette/issues/4321)]\[4321].
- \[[#369](https://redirect.github.com/Ogeon/palette/issues/369)]\[369]: Fix potential `NaN` from converting to `Okhsl` when the input is white or black. Closes \[[#368](https://redirect.github.com/Ogeon/palette/issues/368)]\[368].
- \[[#355](https://redirect.github.com/Ogeon/palette/issues/355)]\[355]: Add traits for delta E and the improved formulas from Huang et al.
- \[[#351](https://redirect.github.com/Ogeon/palette/issues/351)]\[351]: Improve some documentation for beginners.
- \[[#347](https://redirect.github.com/Ogeon/palette/issues/347)]\[347]: Implements Rgba::from_str().
frozenlib/parse-display (parse-display)
### [`v0.10.0`](https://redirect.github.com/frozenlib/parse-display/blob/HEAD/CHANGELOG.md#0100---2024-08-04)
[Compare Source](https://redirect.github.com/frozenlib/parse-display/compare/v0.9.1...v0.10.0)
##### Changed
- Set `rust-version` to 1.80.0.
- In debug mode, it will panic if the result of `FromStrFormat::regex` varies for the same field depending on the type parameters.
- Change the behavior when both `#[display("...")]` and `#[from_str("...")]` are specified for a field. ([dc14a2b])
[dc14a2b]: https://redirect.github.com/frozenlib/parse-display/commit/dc14a2b78a0b547f4911d2cf45d2f8b96aa723e2
##### Fixed
- Fix `#[from_str]` to not affect `Display`.
### [`v0.9.1`](https://redirect.github.com/frozenlib/parse-display/blob/HEAD/CHANGELOG.md#091---2024-05-31)
[Compare Source](https://redirect.github.com/frozenlib/parse-display/compare/v0.9.0...v0.9.1)
##### Changed
- Set `rust-version` to 1.70.0. [#42](https://redirect.github.com/frozenlib/parse-display/issues/42)
##### Fixed
- Ensure `Pointer` format is formatted correctly.
##### Performance
- Optimizing runtime performance for the literal string case. [#39](https://redirect.github.com/frozenlib/parse-display/issues/39)
libpnet/libpnet (pnet)
### [`v0.35.0`](https://redirect.github.com/libpnet/libpnet/releases/tag/v0.35.0)
[Compare Source](https://redirect.github.com/libpnet/libpnet/compare/v0.34.0...v0.35.0)
#### What's Changed
- Update license field following SPDX 2.1 license expression standard by [@frisoft](https://redirect.github.com/frisoft) in [https://github.com/libpnet/libpnet/pull/633](https://redirect.github.com/libpnet/libpnet/pull/633)
- transport: Add option to set ECN on the TransportSender socket. by [@hawkinsw](https://redirect.github.com/hawkinsw) in [https://github.com/libpnet/libpnet/pull/685](https://redirect.github.com/libpnet/libpnet/pull/685)
- Fix failing tests by [@Paul-weqe](https://redirect.github.com/Paul-weqe) in [https://github.com/libpnet/libpnet/pull/676](https://redirect.github.com/libpnet/libpnet/pull/676)
- remove the repetitive word by [@cuishuang](https://redirect.github.com/cuishuang) in [https://github.com/libpnet/libpnet/pull/672](https://redirect.github.com/libpnet/libpnet/pull/672)
- Add apple tvos support by [@lcruz99](https://redirect.github.com/lcruz99) in [https://github.com/libpnet/libpnet/pull/652](https://redirect.github.com/libpnet/libpnet/pull/652)
- Adding vxlan to pnet_packet by [@stevedoyle](https://redirect.github.com/stevedoyle) in [https://github.com/libpnet/libpnet/pull/654](https://redirect.github.com/libpnet/libpnet/pull/654)
- Add ICMP Destination unreachable Next-hop MTU by [@fabi321](https://redirect.github.com/fabi321) in [https://github.com/libpnet/libpnet/pull/662](https://redirect.github.com/libpnet/libpnet/pull/662)
- Update ARP example to also support IPv6 via NDP by [@tgross35](https://redirect.github.com/tgross35) in [https://github.com/libpnet/libpnet/pull/642](https://redirect.github.com/libpnet/libpnet/pull/642)
- Ensure BPF read is 4-byte aligned by [@frankplow](https://redirect.github.com/frankplow) in [https://github.com/libpnet/libpnet/pull/655](https://redirect.github.com/libpnet/libpnet/pull/655)
- Expose the various values in the TcpOption structure for external program access by [@rikonaka](https://redirect.github.com/rikonaka) in [https://github.com/libpnet/libpnet/pull/640](https://redirect.github.com/libpnet/libpnet/pull/640)
- Definition for ethernet flow control packets. by [@AJMansfield](https://redirect.github.com/AJMansfield) in [https://github.com/libpnet/libpnet/pull/649](https://redirect.github.com/libpnet/libpnet/pull/649)
- Expose set_ecn on unix only by [@mrmonday](https://redirect.github.com/mrmonday) in [https://github.com/libpnet/libpnet/pull/689](https://redirect.github.com/libpnet/libpnet/pull/689)
- datalink(linux): add feature to pass the fd (socket) to ::channel() by [@Martichou](https://redirect.github.com/Martichou) in [https://github.com/libpnet/libpnet/pull/584](https://redirect.github.com/libpnet/libpnet/pull/584)
- Added DNS protocol support by [@tomDev5](https://redirect.github.com/tomDev5) in [https://github.com/libpnet/libpnet/pull/678](https://redirect.github.com/libpnet/libpnet/pull/678)
- linux: use poll api instead o
Configuration
📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
â™» Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
[ ] If you want to rebase/retry this PR, check this box
This PR contains the following updates:
0.3
->0.4
0.1.74
->0.1.83
1.5.0
->1.8.0
0.4.31
->0.4.38
0.6.2
->0.6.3
0.18.0
->0.18.1
0.99.17
->0.99.18
0.3.29
->0.3.31
0.3.29
->0.3.31
0.3.8
->0.3.9
0.3
->0.4
0.24
->0.25
1.4.0
->1.5.0
0.12.1
->0.12.5
0.7.3
->0.7.6
0.9
->0.10
0.34
->0.35
0.12
->0.13
0.12
->0.13
0.20
->0.22
0.20
->0.22
1.10.3
->1.11.1
1.0.193
->1.0.214
1.0.193
->1.0.214
1.0.108
->1.0.132
0.7
->0.8
0.26.1
->0.26.3
0.26.1
->0.26.4
1.36.0
->1.41.1
0.1.14
->0.1.16
0.7.10
->0.7.12
0.8.8
->0.8.19
1.7.0
->1.11.0
0.16
->0.19
0.3.6
->0.3.7
Release Notes
dtolnay/async-trait (async-trait)
### [`v0.1.83`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.83) [Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.82...0.1.83) - Prevent needless_arbitrary_self_type lint being produced in generated code ([#278](https://redirect.github.com/dtolnay/async-trait/issues/278)) ### [`v0.1.82`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.82) [Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.81...0.1.82) - Prevent elided_named_lifetimes lint being produced in generated code ([#276](https://redirect.github.com/dtolnay/async-trait/issues/276)) ### [`v0.1.81`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.81) [Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.80...0.1.81) - Turn off unneeded features of `syn` dependency ([#272](https://redirect.github.com/dtolnay/async-trait/issues/272), thanks [@klensy](https://redirect.github.com/klensy)) ### [`v0.1.80`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.80) [Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.79...0.1.80) - Fix unreachable code warning for async functions that return `!` ([#265](https://redirect.github.com/dtolnay/async-trait/issues/265), thanks [@de-vri-es](https://redirect.github.com/de-vri-es)) ### [`v0.1.79`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.79) [Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.78...0.1.79) - Clean up some dead code ### [`v0.1.78`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.78) [Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.77...0.1.78) - Prevent unused_qualifications lint being triggered in generated code in nightly-2024-03-05 and up ([#260](https://redirect.github.com/dtolnay/async-trait/issues/260)) ### [`v0.1.77`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.77) [Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.76...0.1.77) - Update proc-macro2 to fix caching issue when using a rustc-wrapper such as sccache ### [`v0.1.76`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.76) [Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.75...0.1.76) - Documentation improvements ### [`v0.1.75`](https://redirect.github.com/dtolnay/async-trait/releases/tag/0.1.75) [Compare Source](https://redirect.github.com/dtolnay/async-trait/compare/0.1.74...0.1.75) - Documentation improvementstokio-rs/bytes (bytes)
### [`v1.8.0`](https://redirect.github.com/tokio-rs/bytes/blob/HEAD/CHANGELOG.md#180-October-21-2024) [Compare Source](https://redirect.github.com/tokio-rs/bytes/compare/v1.7.2...v1.8.0) - Guarantee address in `split_off`/`split_to` for empty slices ([#740](https://redirect.github.com/tokio-rs/bytes/issues/740)) ### [`v1.7.2`](https://redirect.github.com/tokio-rs/bytes/blob/HEAD/CHANGELOG.md#172-September-17-2024) [Compare Source](https://redirect.github.com/tokio-rs/bytes/compare/v1.7.1...v1.7.2) ##### Fixed - Fix default impl of `Buf::{get_int, get_int_le}` ([#732](https://redirect.github.com/tokio-rs/bytes/issues/732)) ##### Documented - Fix double spaces in comments and doc comments ([#731](https://redirect.github.com/tokio-rs/bytes/issues/731)) ##### Internal changes - Ensure BytesMut::advance reduces capacity ([#728](https://redirect.github.com/tokio-rs/bytes/issues/728)) ### [`v1.7.1`](https://redirect.github.com/tokio-rs/bytes/blob/HEAD/CHANGELOG.md#171-August-1-2024) [Compare Source](https://redirect.github.com/tokio-rs/bytes/compare/v1.7.0...v1.7.1) This release reverts the following change due to a regression: - Reuse capacity when possible in `chronotope/chrono (chrono)
### [`v0.4.38`](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.38) [Compare Source](https://redirect.github.com/chronotope/chrono/compare/v0.4.37...v0.4.38) This release bring a ca. 20% improvement to the performance of the formatting code, and a convenient `days_since` method for the `Weekday` type. Chrono 0.4.38 also removes the long deprecated `rustc-serialize` feature. Support for `rustc-serialize` will be [soft-destabilized in the next Rust edition](https://redirect.github.com/rust-lang/rust/pull/116016). Removing the feature will not break existing users of the feature; Cargo will just not update dependents that rely on it to newer versions of chrono. In chrono 0.4.36 we made an accidental breaking change by switching to `derive(Copy)` for `DateTime` instead of a manual implementation. It is reverted in this release. ##### Removals - Remove `rustc-serialize` feature ([#1548](https://redirect.github.com/chronotope/chrono/issues/1548), thanks [@workingjubilee](https://redirect.github.com/workingjubilee)) ##### Additions - Add `Weekday::days_since` ([#1249](https://redirect.github.com/chronotope/chrono/issues/1249), based on [#216](https://redirect.github.com/chronotope/chrono/issues/216) by [@clarfonthey](https://redirect.github.com/clarfonthey)) - Add `TimeDelta::checked_mul` and `TimeDelta::checked_div` ([#1565](https://redirect.github.com/chronotope/chrono/issues/1565), thanks [@Zomtir](https://redirect.github.com/Zomtir)) ##### Fixes - Return error when rounding with a zero duration ([#1474](https://redirect.github.com/chronotope/chrono/issues/1474), thanks [@Dav1dde](https://redirect.github.com/Dav1dde)) - Manually implement `Copy` for `DateTime` if offset is `Copy` ([#1573](https://redirect.github.com/chronotope/chrono/issues/1573)) ##### Internal - Inline `test_encodable_json` and `test_decodable_json` functions ([#1550](https://redirect.github.com/chronotope/chrono/issues/1550)) - CI: Reduce combinations in `cargo hack check` ([#1553](https://redirect.github.com/chronotope/chrono/issues/1553)) - Refactor formatting code ([#1335](https://redirect.github.com/chronotope/chrono/issues/1335)) - Optimize number formatting ([#1558](https://redirect.github.com/chronotope/chrono/issues/1558)) - Only package files needed for building and testing ([#1554](https://redirect.github.com/chronotope/chrono/issues/1554)) Thanks to all contributors on behalf of the chrono team, [@djc](https://redirect.github.com/djc) and [@pitdicker](https://redirect.github.com/pitdicker)! ### [`v0.4.37`](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.37) [Compare Source](https://redirect.github.com/chronotope/chrono/compare/v0.4.36...v0.4.37) Version 0.4.36 introduced an unexpected breaking change and was yanked. In it `LocalResult` was renamed to `MappedLocalTime` to avoid the impression that it is a `Result` type were some of the results are errors. For backwards compatibility a type alias with the old name was added. As it turns out there is one case where a type alias behaves differently from the regular enum: you can't import enum variants from a type alias with `use chrono::LocalResult::*`. With 0.4.37 we make the new name `MappedLocalTime` the alias, but keep using it in function signatures and the documentation as much as possible. See also the release notes of [chrono 0.4.36](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.36) from yesterday for the yanked release. ### [`v0.4.36`](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.36) [Compare Source](https://redirect.github.com/chronotope/chrono/compare/v0.4.35...v0.4.36) This release un-deprecates the methods on `TimeDelta` that were deprecated with the 0.4.35 release because of the churn they are causing for the ecosystem. New is the `DateTime::with_time()` method. As an example of when it is useful: ```rust use chrono::{Local, NaiveTime}; // Today at 12:00:00 let today_noon = Local::now().with_time(NaiveTime::from_hms_opt(12, 0, 0).unwrap()); ``` ##### Additions - Add `DateTime::with_time()` ([#1510](https://redirect.github.com/chronotope/chrono/issues/1510)) ##### Deprecations - Revert `TimeDelta` deprecations ([#1543](https://redirect.github.com/chronotope/chrono/issues/1543)) - Deprecate `TimeStamp::timestamp_subsec_nanos`, which was missed in the 0.4.35 release ([#1486](https://redirect.github.com/chronotope/chrono/issues/1486)) ##### Documentation - Correct version number of deprecation notices ([#1486](https://redirect.github.com/chronotope/chrono/issues/1486)) - Fix some typos ([#1505](https://redirect.github.com/chronotope/chrono/issues/1505)) - Slightly improve serde documentation ([#1519](https://redirect.github.com/chronotope/chrono/issues/1519)) - Main documentation: simplify links and reflow text ([#1535](https://redirect.github.com/chronotope/chrono/issues/1535)) ##### Internal - CI: Lint benchmarks ([#1489](https://redirect.github.com/chronotope/chrono/issues/1489)) - Remove unnessary `Copy` and `Send` impls ([#1492](https://redirect.github.com/chronotope/chrono/issues/1492), thanks [@erickt](https://redirect.github.com/erickt)) - Backport streamlined `NaiveDate` unit tests ([#1500](https://redirect.github.com/chronotope/chrono/issues/1500), thanks [@Zomtir](https://redirect.github.com/Zomtir)) - Rename `LocalResult` to `TzResolution`, add alias ([#1501](https://redirect.github.com/chronotope/chrono/issues/1501)) - Update windows-bindgen to 0.55 ([#1504](https://redirect.github.com/chronotope/chrono/issues/1504)) - Avoid duplicate imports, which generate warnings on nightly ([#1507](https://redirect.github.com/chronotope/chrono/issues/1507)) - Add extra debug assertions to `NaiveDate::from_yof` ([#1518](https://redirect.github.com/chronotope/chrono/issues/1518)) - Some small simplifications to `DateTime::date_naive` and `NaiveDate::diff_months` ([#1530](https://redirect.github.com/chronotope/chrono/issues/1530)) - Remove `unwrap` in Unix `Local` type ([#1533](https://redirect.github.com/chronotope/chrono/issues/1533)) - Use different method to ignore feature-dependent doctests ([#1534](https://redirect.github.com/chronotope/chrono/issues/1534)) Thanks to all contributors on behalf of the chrono team, [@djc](https://redirect.github.com/djc) and [@pitdicker](https://redirect.github.com/pitdicker)! ### [`v0.4.35`](https://redirect.github.com/chronotope/chrono/releases/tag/v0.4.35) [Compare Source](https://redirect.github.com/chronotope/chrono/compare/v0.4.34...v0.4.35) Most of our efforts have shifted to improving the API for a 0.5 release, for which cleanups and refactorings are landing on the 0.4.x branch. The most significant changes in this release are two sets of deprecations. - We deprecated all timestamp-related methods on `NaiveDateTime`. The reason is that a timestamp is defined to be in UTC. The `NaiveDateTime` type doesn't know the offset from UTC, so it was technically wrong to have these methods. The alternative is to use the similar methods on the `DateTimeeyre-rs/eyre (color-eyre)
### [`v0.6.3`](https://redirect.github.com/eyre-rs/eyre/compare/v0.6.2...color-eyre-v0.6.3) [Compare Source](https://redirect.github.com/eyre-rs/eyre/compare/v0.6.2...color-eyre-v0.6.3)SergioBenitez/cookie-rs (cookie)
### [`v0.18.1`](https://redirect.github.com/SergioBenitez/cookie-rs/blob/HEAD/CHANGELOG.md#Version-0181-Mar-25-2024) [Compare Source](https://redirect.github.com/SergioBenitez/cookie-rs/compare/0.18.0...0.18.1) ##### New Features - Added support for the draft `Partitioned` attribute. The new `CookieBuilder::partition()`, `Cookie::partitioned()`, and `Cookie::set_partitioned()` methods allow enabling and/or disabling the attribute. Additionally, the attribute is recognized during parsing. - Added `CookieBuilder::removal()`, counterpart to `Cookie::make_removal()`.JelteF/derive_more (derive_more)
### [`v0.99.18`](https://redirect.github.com/JelteF/derive_more/compare/v0.99.17...v0.99.18) [Compare Source](https://redirect.github.com/JelteF/derive_more/compare/v0.99.17...v0.99.18)rust-lang/futures-rs (futures)
### [`v0.3.31`](https://redirect.github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0331---2024-10-05) [Compare Source](https://redirect.github.com/rust-lang/futures-rs/compare/0.3.30...0.3.31) - Fix use after free of task in `FuturesUnordered` when dropped future panics ([#2886](https://redirect.github.com/rust-lang/futures-rs/issues/2886)) - Fix soundness bug in `task::waker_ref` ([#2830](https://redirect.github.com/rust-lang/futures-rs/issues/2830)) This is a breaking change but allowed because it is soundness bug fix. - Fix bugs in `AsyncBufRead::read_line` and `AsyncBufReadExt::lines` ([#2884](https://redirect.github.com/rust-lang/futures-rs/issues/2884)) - Fix parsing issue in `select!`/`select_biased!` ([#2832](https://redirect.github.com/rust-lang/futures-rs/issues/2832)) This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted. - Work around issue due to upstream `Waker::will_wake` change ([#2865](https://redirect.github.com/rust-lang/futures-rs/issues/2865)) - Add `stream::Iter::{get_ref,get_mut,into_inner}` ([#2875](https://redirect.github.com/rust-lang/futures-rs/issues/2875)) - Add `future::AlwaysReady` ([#2825](https://redirect.github.com/rust-lang/futures-rs/issues/2825)) - Relax trait bound on non-constructor methods of `io::{BufReader,BufWriter}` ([#2848](https://redirect.github.com/rust-lang/futures-rs/issues/2848)) ### [`v0.3.30`](https://redirect.github.com/rust-lang/futures-rs/blob/HEAD/CHANGELOG.md#0330---2023-12-24) [Compare Source](https://redirect.github.com/rust-lang/futures-rs/compare/0.3.29...0.3.30) **Note:** This release of futures-util has been yanked due to a bug fixed in 0.3.31 and a compile failure with futures-task 0.3.31 and later. - Add `{BiLock,SplitStream,SplitSink,ReadHalf,WriteHalf}::is_pair_of` ([#2797](https://redirect.github.com/rust-lang/futures-rs/issues/2797)) - Fix panic in `FuturesUnordered::clear` ([#2809](https://redirect.github.com/rust-lang/futures-rs/issues/2809)) - Fix panic in `AsyncBufReadExt::fill_buf` ([#2801](https://redirect.github.com/rust-lang/futures-rs/issues/2801), [#2812](https://redirect.github.com/rust-lang/futures-rs/issues/2812)) - Improve support for targets without atomic CAS ([#2811](https://redirect.github.com/rust-lang/futures-rs/issues/2811)) - Remove build scripts ([#2811](https://redirect.github.com/rust-lang/futures-rs/issues/2811))svartalf/hostname (hostname)
### [`v0.4.0`](https://redirect.github.com/svartalf/hostname/blob/HEAD/CHANGELOG.md#040---2024-04-01) [Compare Source](https://redirect.github.com/svartalf/hostname/compare/v0.3.1...v0.4.0) ##### Added - CI setup now covers almost all supported Tier 1 and Tier 2 platform targets ##### Changed - Minimum Supported Rust version set to `1.67.0` - Rust edition set to "2021" ##### Fixed - Handle edge cases for POSIX systems ([#14](https://redirect.github.com/svartalf/hostname/issues/14)) - docs.rs documentation buildimage-rs/image (image)
### [`v0.25.5`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0255) [Compare Source](https://redirect.github.com/image-rs/image/compare/v0.25.4...v0.25.5) Features: - Added support for decoding 10-bit and 12-bit AVIF - Initial, opt-in serde support for an enum. This may be extended to other types in the future. Bug fixes: - [Multiple bug fixes in AVIF decoding](https://redirect.github.com/image-rs/image/pull/2373) - The `rayon` feature now correctly toggles the use of `rayon` when encoding AVIF. (Previously it would be either always on or always off depending on the version of the `ravif` crate in your dependency tree.) - "jfif" file extension for JPEG images is now recognized ### [`v0.25.4`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0254) [Compare Source](https://redirect.github.com/image-rs/image/compare/v0.25.3...v0.25.4) Features: - Much faster decoding of lossless WebP due to a variety of optimizations. Our benchmarks show 2x to 2.5x improvement. - Added support for orientation metadata, so that e.g. smartphone camera images could be displayed correctly: - Added `ImageDecoder::orientation()` and implemented orientation metadata extraction for JPEG, WebP and TIFF formats - Added `DynamicImage::apply_orientation()` to apply the orientation to an image - Added support for extracting Exif metadata from images via `ImageDecoder::exif_metadata()`, and implemented it for JPEG and WebP formats - Added `ImageEncoder::set_icc_profile()` and implemented it for WebP format. Pull requests with implementations for other formats are welcome. - Added `DynamicImage::fast_blur()` for a linear-time approximation of Gaussian blur, which is much faster at larger blur radii Bug fixes: - Fixed some APNG images being decoded incorrectly - Fixed the iterator over animated WebP frames to return `None` instead of an error when the end of the animation is reached ### [`v0.25.3`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0253) [Compare Source](https://redirect.github.com/image-rs/image/compare/v0.25.2...v0.25.3) Yanked! This version accidentally missed a commit that should have been included with the release. The `Orientation` struct should be in the appropriate module instead of the top-level. This release won't be supported. ### [`v0.25.2`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0252) [Compare Source](https://redirect.github.com/image-rs/image/compare/v0.25.1...v0.25.2) Features: - Added the HDR encoder to supported formats in generic write methods with the `hdr` feature enabled. Supports 32-bit float RGB color only, for now. - When cloning `ImageBuffer`, `DynamicImage` and `Frame` the existing buffer will now be reused if possible. - Added `image::ImageReader` as an alias. - Implement `ImageEncoder` for `HdrEncoder`. Structural changes - Switch from `byteorder` to `byteorder-lite`, consolidating some casting unsafety to `bytemuck`. - Many methods on `DynamicImage` and buffers gained `#[must_use]` indications. Bug fixes: - Removed test data included in the crate archive. - The WebP animation decoder stops when reaching the indicate frame count. - Fixed bugs in the `bmp` decoder. - Format support gated on the `exr` feature now compiles in isolation. ### [`v0.25.1`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0251) [Compare Source](https://redirect.github.com/image-rs/image/compare/v0.25.0...v0.25.1) Bug fixes: - Fixed corrupt JPEG output when attempting to encode images containing an alpha channel. - Only accept ".ff" file extension for farbfeld images. - Correct farbfeld feature flag for `ImageFormat::{reading_enabled, writing_enabled}`. - Disable strict mode for JPEG decoder. - Add nasm feature to optionally enable faster AVIF encoding. ### [`v0.25.0`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0250) [Compare Source](https://redirect.github.com/image-rs/image/compare/v0.24.9...v0.25.0) Breaking changes: - Added `BufRead` + `Seek` bound on many decoders. - Use `ExtendedColorType` instead of `ColorType` when encoding. - Removed `ImageOutputFormat`, `GenericImageView::bounds`, and several other deprecated items. - Removed incremental decoding support and changed `ImageDecoder` so the trait is object safe. - Pixel types are now `repr(transparent)` rather than `repr(C)`. - Made color_quant dependency optional. - Renamed some feature flags. Structural changes: - Increased MSRV to 1.67.1 Codec changes: - Switched to image-webp for WebP encoding. - Switched to zune-jpeg for JPEG decoding. - Made the HDR decoder produce f32 images. - Removed DXT encoding and decoding support. ### [`v0.24.9`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0249) [Compare Source](https://redirect.github.com/image-rs/image/compare/v0.24.8...v0.24.9) Structural changes: - Relicense to MIT OR Apache-2.0 - Increase MSRV 1.63.0 New features: - Support limits in PNG animation decoding. - Added offsets to SubImage to compensate for the now-deprecated bounds call from GenericImageView. Bug fixes: - Correct limit tests for TIFF. - Avoid overflow in gif::Decoder::buffer_size. - Return error instead of using asssertion for Avif decoder unsupported or invalid bit depth. ### [`v0.24.8`](https://redirect.github.com/image-rs/image/blob/HEAD/CHANGES.md#Version-0248) [Compare Source](https://redirect.github.com/image-rs/image/compare/v0.24.7...v0.24.8) New features: - Added pure-Rust lossless WebP encoding. - Added `DynamicImage::new` method. - Added `PngDecoder::gamma_value` method. - Added `ImageFormat::{reading_enabled, writing_enabled, all}`. - TGA encoder now supports RLE encoding. - Add rayon parallel iterators behind an optional `rayon` feature. - Support CMYK TIFF images. - Implement `Fromrust-lang-nursery/lazy-static.rs (lazy_static)
### [`v1.5.0`](https://redirect.github.com/rust-lang-nursery/lazy-static.rs/compare/1.4.0...1.5.0) [Compare Source](https://redirect.github.com/rust-lang-nursery/lazy-static.rs/compare/1.4.0...1.5.0)jeromefroe/lru-rs (lru)
### [`v0.12.5`](https://redirect.github.com/jeromefroe/lru-rs/blob/HEAD/CHANGELOG.md#v0125---2024-10-30) [Compare Source](https://redirect.github.com/jeromefroe/lru-rs/compare/0.12.4...0.12.5) - Upgrade hashbrown dependency to 0.15. ### [`v0.12.4`](https://redirect.github.com/jeromefroe/lru-rs/blob/HEAD/CHANGELOG.md#v0124---2024-07-30) [Compare Source](https://redirect.github.com/jeromefroe/lru-rs/compare/0.12.3...0.12.4) - Add methods that take a reference to the key that should be inserted. ### [`v0.12.3`](https://redirect.github.com/jeromefroe/lru-rs/blob/HEAD/CHANGELOG.md#v0123---2024-02-24) [Compare Source](https://redirect.github.com/jeromefroe/lru-rs/compare/0.12.2...0.12.3) - Add `get_key_value_mut` method. ### [`v0.12.2`](https://redirect.github.com/jeromefroe/lru-rs/blob/HEAD/CHANGELOG.md#v0122---2024-01-28) [Compare Source](https://redirect.github.com/jeromefroe/lru-rs/compare/0.12.1...0.12.2) - Add `clone` method.Ogeon/palette (palette)
### [`v0.7.6`](https://redirect.github.com/Ogeon/palette/blob/HEAD/CHANGELOG.md#Version-076---2024-04-28) [Compare Source](https://redirect.github.com/Ogeon/palette/compare/0.7.5...0.7.6) - \[[#390](https://redirect.github.com/Ogeon/palette/issues/390)]\[390]: Add `From` implementations for changing `Rgb` component types between `u8`, `f32` and `f64`. - \[[#342](https://redirect.github.com/Ogeon/palette/issues/342)]\[342]: Implement CAM16. Closes \[[#199](https://redirect.github.com/Ogeon/palette/issues/199)]\[199]. - \[[#386](https://redirect.github.com/Ogeon/palette/issues/386)]\[386]: Fix angle conversion from `f32` to `u8`. Closes \[[#385](https://redirect.github.com/Ogeon/palette/issues/385)]\[385]. - \[[#384](https://redirect.github.com/Ogeon/palette/issues/384)]\[384]: Add traits for color schemes from traditional color theory. ### [`v0.7.5`](https://redirect.github.com/Ogeon/palette/blob/HEAD/CHANGELOG.md#Version-075---2024-02-25) [Compare Source](https://redirect.github.com/Ogeon/palette/compare/0.7.4...0.7.5) - \[[#380](https://redirect.github.com/Ogeon/palette/issues/380)]\[380]: Avoid recursive trait resolution for `IntoIterator`. Closes \[[#283](https://redirect.github.com/Ogeon/palette/issues/283)]\[283]. ### [`v0.7.4`](https://redirect.github.com/Ogeon/palette/blob/HEAD/CHANGELOG.md#Version-074---2024-01-28) [Compare Source](https://redirect.github.com/Ogeon/palette/compare/0.7.3...0.7.4) - \[[#373](https://redirect.github.com/Ogeon/palette/issues/373)]\[373]: Add an "alloc" feature and make tests work with any feature combination. Closes \[[#366](https://redirect.github.com/Ogeon/palette/issues/366)]\[366]. - \[[#374](https://redirect.github.com/Ogeon/palette/issues/374)]\[374]: Fix typo about max range of u8. Closes \[[#1234](https://redirect.github.com/Ogeon/palette/issues/1234)]\[1234], \[[#4321](https://redirect.github.com/Ogeon/palette/issues/4321)]\[4321]. - \[[#369](https://redirect.github.com/Ogeon/palette/issues/369)]\[369]: Fix potential `NaN` from converting to `Okhsl` when the input is white or black. Closes \[[#368](https://redirect.github.com/Ogeon/palette/issues/368)]\[368]. - \[[#355](https://redirect.github.com/Ogeon/palette/issues/355)]\[355]: Add traits for delta E and the improved formulas from Huang et al. - \[[#351](https://redirect.github.com/Ogeon/palette/issues/351)]\[351]: Improve some documentation for beginners. - \[[#347](https://redirect.github.com/Ogeon/palette/issues/347)]\[347]: Implements Rgba::from_str().frozenlib/parse-display (parse-display)
### [`v0.10.0`](https://redirect.github.com/frozenlib/parse-display/blob/HEAD/CHANGELOG.md#0100---2024-08-04) [Compare Source](https://redirect.github.com/frozenlib/parse-display/compare/v0.9.1...v0.10.0) ##### Changed - Set `rust-version` to 1.80.0. - In debug mode, it will panic if the result of `FromStrFormat::regex` varies for the same field depending on the type parameters. - Change the behavior when both `#[display("...")]` and `#[from_str("...")]` are specified for a field. ([dc14a2b]) [dc14a2b]: https://redirect.github.com/frozenlib/parse-display/commit/dc14a2b78a0b547f4911d2cf45d2f8b96aa723e2 ##### Fixed - Fix `#[from_str]` to not affect `Display`. ### [`v0.9.1`](https://redirect.github.com/frozenlib/parse-display/blob/HEAD/CHANGELOG.md#091---2024-05-31) [Compare Source](https://redirect.github.com/frozenlib/parse-display/compare/v0.9.0...v0.9.1) ##### Changed - Set `rust-version` to 1.70.0. [#42](https://redirect.github.com/frozenlib/parse-display/issues/42) ##### Fixed - Ensure `Pointer` format is formatted correctly. ##### Performance - Optimizing runtime performance for the literal string case. [#39](https://redirect.github.com/frozenlib/parse-display/issues/39)libpnet/libpnet (pnet)
### [`v0.35.0`](https://redirect.github.com/libpnet/libpnet/releases/tag/v0.35.0) [Compare Source](https://redirect.github.com/libpnet/libpnet/compare/v0.34.0...v0.35.0) #### What's Changed - Update license field following SPDX 2.1 license expression standard by [@frisoft](https://redirect.github.com/frisoft) in [https://github.com/libpnet/libpnet/pull/633](https://redirect.github.com/libpnet/libpnet/pull/633) - transport: Add option to set ECN on the TransportSender socket. by [@hawkinsw](https://redirect.github.com/hawkinsw) in [https://github.com/libpnet/libpnet/pull/685](https://redirect.github.com/libpnet/libpnet/pull/685) - Fix failing tests by [@Paul-weqe](https://redirect.github.com/Paul-weqe) in [https://github.com/libpnet/libpnet/pull/676](https://redirect.github.com/libpnet/libpnet/pull/676) - remove the repetitive word by [@cuishuang](https://redirect.github.com/cuishuang) in [https://github.com/libpnet/libpnet/pull/672](https://redirect.github.com/libpnet/libpnet/pull/672) - Add apple tvos support by [@lcruz99](https://redirect.github.com/lcruz99) in [https://github.com/libpnet/libpnet/pull/652](https://redirect.github.com/libpnet/libpnet/pull/652) - Adding vxlan to pnet_packet by [@stevedoyle](https://redirect.github.com/stevedoyle) in [https://github.com/libpnet/libpnet/pull/654](https://redirect.github.com/libpnet/libpnet/pull/654) - Add ICMP Destination unreachable Next-hop MTU by [@fabi321](https://redirect.github.com/fabi321) in [https://github.com/libpnet/libpnet/pull/662](https://redirect.github.com/libpnet/libpnet/pull/662) - Update ARP example to also support IPv6 via NDP by [@tgross35](https://redirect.github.com/tgross35) in [https://github.com/libpnet/libpnet/pull/642](https://redirect.github.com/libpnet/libpnet/pull/642) - Ensure BPF read is 4-byte aligned by [@frankplow](https://redirect.github.com/frankplow) in [https://github.com/libpnet/libpnet/pull/655](https://redirect.github.com/libpnet/libpnet/pull/655) - Expose the various values in the TcpOption structure for external program access by [@rikonaka](https://redirect.github.com/rikonaka) in [https://github.com/libpnet/libpnet/pull/640](https://redirect.github.com/libpnet/libpnet/pull/640) - Definition for ethernet flow control packets. by [@AJMansfield](https://redirect.github.com/AJMansfield) in [https://github.com/libpnet/libpnet/pull/649](https://redirect.github.com/libpnet/libpnet/pull/649) - Expose set_ecn on unix only by [@mrmonday](https://redirect.github.com/mrmonday) in [https://github.com/libpnet/libpnet/pull/689](https://redirect.github.com/libpnet/libpnet/pull/689) - datalink(linux): add feature to pass the fd (socket) to ::channel() by [@Martichou](https://redirect.github.com/Martichou) in [https://github.com/libpnet/libpnet/pull/584](https://redirect.github.com/libpnet/libpnet/pull/584) - Added DNS protocol support by [@tomDev5](https://redirect.github.com/tomDev5) in [https://github.com/libpnet/libpnet/pull/678](https://redirect.github.com/libpnet/libpnet/pull/678) - linux: use poll api instead oConfiguration
📅 Schedule: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
â™» Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.