[PR #374] [MERGED] Bump byteorder from 1.2.1 to 1.2.2 #1395

Closed
opened 2026-03-16 02:04:03 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/374
Author: @dependabot-preview[bot]
Created: 4/5/2018
Status: Merged
Merged: 4/8/2018
Merged by: @bluejekyll

Base: masterHead: dependabot/cargo/byteorder-1.2.2


📝 Commits (3)

  • fb50fe1 Bump byteorder from 1.2.1 to 1.2.2
  • 01f592e allow any byte order version over 1.2
  • 247d6d4 Merge branch 'master' into dependabot/cargo/byteorder-1.2.2

📊 Changes

2 files changed (+7 additions, -7 deletions)

View changed files

📝 Cargo.lock (+5 -5)
📝 proto/Cargo.toml (+2 -2)

📄 Description

Bumps byteorder from 1.2.1 to 1.2.2.

Changelog

Sourced from byteorder's changelog.

1.2.1

This patch release removes more unnecessary uses of unsafe that
were overlooked in the prior 1.2.0 release. In particular, the
ReadBytesExt::read_{f32,f64}_into_checked methods have been deprecated and
replaced by more appropriately named read_{f32,f64}_into methods.

1.2.0

The most prominent change in this release of byteorder is the removal of
unnecessary signaling NaN masking, and in turn, the unsafe annotations
associated with methods that didn't do masking. See
#103
for more details.

1.1.0

This release of byteorder features a number of fixes and improvements, mostly
as a result of the
Litz Blitz evaluation.

Feature enhancements:

  • FEATURE #63:
    Add methods for reading/writing slices of numbers for a specific
    endianness.
  • FEATURE #65:
    Add support for u128/i128 types. (Behind the nightly only i128
    feature.)
  • FEATURE #72:
    Add "panics" and "errors" sections for each relevant public API item.
  • FEATURE #74:
    Add CI badges to Cargo.toml.
  • FEATURE #75:
    Add more examples to public API items.
  • Add 24-bit read/write methods.
  • Add BE and LE type aliases for BigEndian and LittleEndian,
    respectively.

Bug fixes:

  • BUG #68:
    Panic in {BigEndian,LittleEndian}::default.
    ... (truncated)
Commits
  • d5186a6 1.2.2
  • f2f7b44 doc: miscellaneous improvements
  • deb5886 style: remove all uses of transmute
  • e00c233 style: remove unnecessary mut
  • 46f1664 clippy: fix a couple of markdown warnings
  • fd3f15c ci: fix it and reorgnanize
  • 1f983bf Add MIPS64 cross-compliation target to Travis
  • bad7aee deps: bump quickcheck to 0.6 and rand to 0.4
  • e81c405 Use depcrated tag instead of pure documentation
  • 7f84f87 bump quickcheck to 0.5
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Note: This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking Bump now in your Dependabot dashboard.

Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot ignore this [minor|major] version will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use [this|these] label[s] will set the current labels as the default for future PRs for this repo and language

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)

Finally, you can contact us by mentioning @dependabot.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hickory-dns/hickory-dns/pull/374 **Author:** [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview) **Created:** 4/5/2018 **Status:** ✅ Merged **Merged:** 4/8/2018 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `dependabot/cargo/byteorder-1.2.2` --- ### 📝 Commits (3) - [`fb50fe1`](https://github.com/hickory-dns/hickory-dns/commit/fb50fe1a595f54758ecfc4ef0d08996a33bc252c) Bump byteorder from 1.2.1 to 1.2.2 - [`01f592e`](https://github.com/hickory-dns/hickory-dns/commit/01f592eb9ce62bd269487804800077c92c96a3fb) allow any byte order version over 1.2 - [`247d6d4`](https://github.com/hickory-dns/hickory-dns/commit/247d6d4142bd89918d837273b04cda6177fd2b7f) Merge branch 'master' into dependabot/cargo/byteorder-1.2.2 ### 📊 Changes **2 files changed** (+7 additions, -7 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+5 -5) 📝 `proto/Cargo.toml` (+2 -2) </details> ### 📄 Description Bumps [byteorder](https://github.com/BurntSushi/byteorder) from 1.2.1 to 1.2.2. <details> <summary>Changelog</summary> *Sourced from byteorder's [changelog](https://github.com/BurntSushi/byteorder/blob/master/CHANGELOG.md).* > 1.2.1 > ===== > This patch release removes more unnecessary uses of `unsafe` that > were overlooked in the prior `1.2.0` release. In particular, the > `ReadBytesExt::read_{f32,f64}_into_checked` methods have been deprecated and > replaced by more appropriately named `read_{f32,f64}_into` methods. > > > 1.2.0 > ===== > The most prominent change in this release of `byteorder` is the removal of > unnecessary signaling NaN masking, and in turn, the `unsafe` annotations > associated with methods that didn't do masking. See > [#103](https://github-redirect.dependabot.com/BurntSushi/byteorder/issues/103) > for more details. > > * [BUG #102](https://github-redirect.dependabot.com/BurntSushi/byteorder/issues/102): > Fix big endian tests. > * [BUG #103](https://github-redirect.dependabot.com/BurntSushi/byteorder/issues/103): > Remove sNaN masking. > > > 1.1.0 > ===== > This release of `byteorder` features a number of fixes and improvements, mostly > as a result of the > [Litz Blitz evaluation](https://public.etherpad-mozilla.org/p/rust-crate-eval-byteorder). > > Feature enhancements: > > * [FEATURE #63](https://github-redirect.dependabot.com/BurntSushi/byteorder/issues/63): > Add methods for reading/writing slices of numbers for a specific > endianness. > * [FEATURE #65](https://github-redirect.dependabot.com/BurntSushi/byteorder/issues/65): > Add support for `u128`/`i128` types. (Behind the nightly only `i128` > feature.) > * [FEATURE #72](https://github-redirect.dependabot.com/BurntSushi/byteorder/issues/72): > Add "panics" and "errors" sections for each relevant public API item. > * [FEATURE #74](https://github-redirect.dependabot.com/BurntSushi/byteorder/issues/74): > Add CI badges to Cargo.toml. > * [FEATURE #75](https://github-redirect.dependabot.com/BurntSushi/byteorder/issues/75): > Add more examples to public API items. > * Add 24-bit read/write methods. > * Add `BE` and `LE` type aliases for `BigEndian` and `LittleEndian`, > respectively. > > Bug fixes: > > * [BUG #68](https://github-redirect.dependabot.com/BurntSushi/byteorder/issues/68): > Panic in {BigEndian,LittleEndian}::default. > ... (truncated) </details> <details> <summary>Commits</summary> - [`d5186a6`](https://github.com/BurntSushi/byteorder/commit/d5186a61daeacb6a5ccff28213db20258b8a6b23) 1.2.2 - [`f2f7b44`](https://github.com/BurntSushi/byteorder/commit/f2f7b44a14ecef10478016dd57a281b337ca511c) doc: miscellaneous improvements - [`deb5886`](https://github.com/BurntSushi/byteorder/commit/deb58862ddc0d02142abb4ffed6a966ada0fdec6) style: remove all uses of transmute - [`e00c233`](https://github.com/BurntSushi/byteorder/commit/e00c2331f66b7b0909d4484fba8c76054ab843a5) style: remove unnecessary mut - [`46f1664`](https://github.com/BurntSushi/byteorder/commit/46f1664cac87125a4dfdea32886fd1127e8f1bc4) clippy: fix a couple of markdown warnings - [`fd3f15c`](https://github.com/BurntSushi/byteorder/commit/fd3f15c08e2911dc60e4e6cb1986dc3736cd7e53) ci: fix it and reorgnanize - [`1f983bf`](https://github.com/BurntSushi/byteorder/commit/1f983bf7ad5967d782a6c008362e77d97858fea6) Add MIPS64 cross-compliation target to Travis - [`bad7aee`](https://github.com/BurntSushi/byteorder/commit/bad7aee9a2dfe3cd0505b128bec57cfdbed39162) deps: bump quickcheck to 0.6 and rand to 0.4 - [`e81c405`](https://github.com/BurntSushi/byteorder/commit/e81c405c955e67433aaac82fdf7bea65f13715c0) Use depcrated tag instead of pure documentation - [`7f84f87`](https://github.com/BurntSushi/byteorder/commit/7f84f871314b438e3cf4e3342b86f308ccb9110c) bump quickcheck to 0.5 - See full diff in [compare view](https://github.com/BurntSushi/byteorder/compare/1.2.1...1.2.2) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/ci_status?dependency-name=byteorder&package-manager=cargo&previous-version=1.2.1&new-version=1.2.2)](https://dependabot.com/compatibility-score.html?dependency-name=byteorder&package-manager=cargo&previous-version=1.2.1&new-version=1.2.2) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. --- **Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit. You can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com). <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot ignore this [minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use [this|these] label[s]` will set the current labels as the default for future PRs for this repo and language Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) Finally, you can contact us by mentioning @dependabot. </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 02:04:03 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hickory-dns#1395
No description provided.