Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the production-dependencies group with 18 updates #76

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 13, 2023

Bumps the production-dependencies group with 18 updates:

Package From To
base64 0.21.4 0.21.5
prost 0.12.0 0.12.1
prost-types 0.12.0 0.12.1
insta 1.31.0 1.34.0
proptest 1.2.0 1.4.0
prost-build 0.12.0 0.12.1
protox 0.5.0 0.5.1
serde_json 1.0.106 1.0.108
serde_yaml 0.9.25 0.9.27
proc-macro2 1.0.66 1.0.69
syn 2.0.32 2.0.39
trybuild 1.0.84 1.0.85
serde 1.0.190 1.0.192
criterion 0.4.0 0.5.1
rayon 1.7.0 1.8.0
env_logger 0.10.0 0.10.1
flate2 1.0.27 1.0.28
tempfile 3.8.0 3.8.1

Updates base64 from 0.21.4 to 0.21.5

Changelog

Sourced from base64's changelog.

0.21.5

  • Add Debug and Clone impls for the general purpose Engine
Commits
  • 7f81baf v0.21.5
  • 95dda57 Merge pull request #255 from marshallpierce/mp/debug
  • bda313a Add Debug and Clone to general purpose Engine
  • 53a8737 Merge pull request #254 from marshallpierce/mp/ci-all-targets
  • c423b6e CI for all targets w/o default features
  • 9eaf503 Merge pull request #253 from kpreid/features-and-build
  • 04451fb Allow cargo test to complete under any set of features.
  • 2ee1a00 no_std import simplification.
  • See full diff in compare view

Updates prost from 0.12.0 to 0.12.1

Commits

Updates prost-types from 0.12.0 to 0.12.1

Commits

Updates insta from 1.31.0 to 1.34.0

Changelog

Sourced from insta's changelog.

1.34.0

  • Snapshots are now sorted in the UI on review. (#413)
  • Re-organized repository to move cargo-insta into a workspace. (#410)
  • Fixed handling of --manifest-path with regards to virtual workspaces. (#409)

1.33.0

  • Added --all-targets parameter support to cargo insta test. (#408)

1.32.0

  • Added --profile parameter support to cargo insta test.
Commits

Updates proptest from 1.2.0 to 1.4.0

Commits

Updates prost-build from 0.12.0 to 0.12.1

Commits

Updates protox from 0.5.0 to 0.5.1

Changelog

Sourced from protox's changelog.

[0.5.1] - 2023-11-02

Added

  • The prost and prost-reflect dependencies are now re-exported at the crate root, for easier use in build scripts.
Commits

Updates serde_json from 1.0.106 to 1.0.108

Release notes

Sourced from serde_json's releases.

v1.0.108

v1.0.107

  • impl IntoDeserializer for &RawValue (#1071)
Commits

Updates serde_yaml from 0.9.25 to 0.9.27

Release notes

Sourced from serde_yaml's releases.

0.9.27

  • Always serialize serde_yaml::Number containing NaN as a positive NaN (#394)

0.9.26

  • Guarantee that .nan is deserialized as a positive NaN (#392, #393)
Commits
  • 66ec2cf Release 0.9.27
  • 23069f2 Merge pull request #394 from dtolnay/numbernan
  • 1cda03f Destroy NaN signaling and payload too
  • 88c032f Deterministically destroy sign of NaN when converted to Number
  • 22116b6 Expand from_float macro
  • 1e2a89c Format PR 393 with rustfmt
  • 8032b5c Release 0.9.26
  • d07a63c Merge pull request #393 from dtolnay/nansign
  • 13e2610 Pull in serde NaN fix
  • 8fa21e5 Add test of NaN sign when deserializing to primitive
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.66 to 1.0.69

Release notes

Sourced from proc-macro2's releases.

1.0.69

  • Fix Span::source_text() bug causing panics or incorrect source text (#410)

1.0.68

  • Fix panic in Span::source_text() when source contains multibyte characters (#408)

1.0.67

  • Special handling for the (/*ERROR*/) placeholder that rustc uses for macros that fail to expand (#405)
Commits
  • 937bbcd Release 1.0.69
  • 42dc36e Merge pull request #412 from dtolnay/sourcetext
  • 6461c2d Add out-of-order call to source_text test
  • c4c3251 Explain source_text implementation approach
  • 31b14c3 Cache byte offsets computed from a char index
  • 0e15461 Make FileInfo mut in source_text to allow amortization of char indices
  • 90b8e1e Merge pull request #411 from dtolnay/sourcetext
  • 137ae0a Fix source_text treating span.lo as byte offset not char index
  • 4c0bd28 Add regression test for issue 410
  • 12eddc0 Reword explanation of SourceMap initial value
  • Additional commits viewable in compare view

Updates syn from 2.0.32 to 2.0.39

Release notes

Sourced from syn's releases.

2.0.39

  • Fix parsing of return expression in match guards (#1528)
  • Improve error message on labeled loop as value expression for break (#1531)

2.0.38

  • Fix "method 'peek' has an incompatible type for trait" error when defining bool as a custom keyword (#1518, thanks @​Vanille-N)

2.0.37

  • Work around incorrect future compatibility warning in rustc 1.74.0-nightly

2.0.36

  • Restore compatibility with --generate-link-to-definition documentation builds (#1514)

2.0.35

  • Make rust-analyzer produce preferred brackets for invocations of Token! macro (#1510, #1512)

2.0.34

  • Documentation improvements

2.0.33

  • Special handling for the (/*ERROR*/) placeholder that rustc uses for macros that fail to expand
Commits
  • 924217c Release 2.0.39
  • 95aeeb5 Merge pull request #1531 from dtolnay/breaklabel
  • b88f86f Ignore single_element_loop clippy lint in test
  • a876185 Improve error on break followed by labeled loop
  • 32ab979 Add test of ambiguous label parsing in break
  • 6f658f8 Merge pull request #1530 from dtolnay/canbeginexpr
  • 20497e1 More precise decision to parse expression after return keyword
  • c6a651a Update name of ExprReturn parse function to match variant name
  • c274590 Indicate that peek argument refers to syn::Ident
  • 3e67cb0 Merge pull request #1529 from dtolnay/up
  • Additional commits viewable in compare view

Updates trybuild from 1.0.84 to 1.0.85

Release notes

Sourced from trybuild's releases.

1.0.85

  • Set thread name to produce better message on panic (#243, #244)
Commits

Updates serde from 1.0.190 to 1.0.192

Release notes

Sourced from serde's releases.

v1.0.192

v1.0.191

  • Documentation improvements
Commits
  • 4676abd Release 1.0.192
  • 35700eb Merge pull request #2646 from robsdedude/fix/2643/allow-tag-field-in-untagged
  • 59892e7 Release 1.0.191
  • 97dd07a Merge pull request #2647 from dtolnay/doccfg
  • c8bc97c Document "rc" and "unstable" features on docs.rs
  • 9dacfbb Fill in more doc(cfg) attributes
  • 05c2509 Relocate cfg attrs into deref_impl
  • 64f949b Relocate cfg attrs into parse_ip_impl and parse_socket_impl
  • 3f339de Relocate cfg attrs into seq_impl and map_impl
  • 215c2b7 Relocate cfg attrs into forwarded_impl macro
  • Additional commits viewable in compare view

Updates criterion from 0.4.0 to 0.5.1

Changelog

Sourced from criterion's changelog.

[0.5.1] - 2023-05-26

Fixed

  • Quick mode (--quick) no longer crashes with measured times over 5 seconds when --noplot is not active

[0.5.0] - 2023-05-23

Changed

  • Replaced lazy_static dependency with once_cell
  • Improved documentation of the html_reports feature
  • Replaced atty dependency with is-terminal
  • MSRV bumped to 1.64
  • Upgraded clap dependency to v4
  • Upgraded tempfile dependency to v3.5.0

Fixed

  • Quick mode (--quick) no longer outputs 1ms for measured times over 5 seconds
  • Documentation updates
Commits

Updates rayon from 1.7.0 to 1.8.0

Changelog

Sourced from rayon's changelog.

Release rayon 1.8.0 / rayon-core 1.12.0 (2023-09-20)

  • The minimum supported rustc is now 1.63.
  • Added ThreadPoolBuilder::use_current_thread to use the builder thread as part of the new thread pool. That thread does not run the pool's main loop, but it may participate in work-stealing if it yields to rayon in some way.
  • Implemented FromParallelIterator<T> for Box<[T]>, Rc<[T]>, and Arc<[T]>, as well as FromParallelIterator<Box<str>> and ParallelExtend<Box<str>> for String.
  • ThreadPoolBuilder::build_scoped now uses std::thread::scope.
  • The default number of threads is now determined using std::thread::available_parallelism instead of the num_cpus crate.
  • The internal logging facility has been removed, reducing bloat for all users.
  • Many smaller performance tweaks and documentation updates.
Commits

Updates env_logger from 0.10.0 to 0.10.1

Changelog

Sourced from env_logger's changelog.

[0.10.1] - 2023-11-10

Commits
  • 36623f5 chore: Release env_logger version 0.10.1
  • 8a033d8 chore: Fix packaging
  • 9df7e6c Merge pull request #241 from ChrisDenton/simple-insert
  • 46ccdd9 perf: Replace HashMap with a Vec
  • bdc96a4 Merge pull request #249 from atouchet/v10
  • 983837c Update links and remove broken badge
  • dcd220d Update listed version number
  • 36b1508 Merge pull request #260 from y-yagi/2018-edition
  • 6f64347 Merge pull request #282 from epage/syntax
  • b297357 chore: Update docs and examples to 2018 edition
  • Additional commits viewable in compare view

Updates flate2 from 1.0.27 to 1.0.28

Release notes

Sourced from flate2's releases.

1.0.28

What's Changed

New Contributors

Full Changelog: rust-lang/flate2-rs@1.0.27...1.0.28

Commits
  • a99b53e Merge pull request #378 from Byron/prep-release
  • 223f829 Merge pull request #380 from Manishearth/reset-stream
  • 7a61ea5 Reset StreamWrapper after calling mz_inflate / mz_deflate
  • 1260d3e prepare next patch-release
  • f62ff42 Merge pull request #375 from georeth/fix-read-doc
  • 5b23cc9 Fix and unify docs of bufread and read types.
  • f285e9a Merge pull request #373 from anforowicz/fix-spare-capacity-handling
  • 69972b8 Fix soundness of write_to_spare_capacity_of_vec.
  • 82e45fa Refactoring: Dedupe code into write_to_spare_capacity_of_vec helper.
  • 20cdcbe Merge pull request #371 from jongiddy/jgiddy/msrv-1.53
  • Additional commits viewable in compare view

Updates tempfile from 3.8.0 to 3.8.1

Changelog

Sourced from tempfile's changelog.

3.8.1

  • Update rustix to fix a potential panic on persist_noclobber on android.
  • Update redox_syscall to 0.4 (on redox).
  • Fix some docs typos.
Commits

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.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the production-dependencies group with 18 updates:

| Package | From | To |
| --- | --- | --- |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.21.4` | `0.21.5` |
| [prost](https://github.com/tokio-rs/prost) | `0.12.0` | `0.12.1` |
| [prost-types](https://github.com/tokio-rs/prost) | `0.12.0` | `0.12.1` |
| [insta](https://github.com/mitsuhiko/insta) | `1.31.0` | `1.34.0` |
| [proptest](https://github.com/proptest-rs/proptest) | `1.2.0` | `1.4.0` |
| [prost-build](https://github.com/tokio-rs/prost) | `0.12.0` | `0.12.1` |
| [protox](https://github.com/andrewhickman/protox) | `0.5.0` | `0.5.1` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.106` | `1.0.108` |
| [serde_yaml](https://github.com/dtolnay/serde-yaml) | `0.9.25` | `0.9.27` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.66` | `1.0.69` |
| [syn](https://github.com/dtolnay/syn) | `2.0.32` | `2.0.39` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.84` | `1.0.85` |
| [serde](https://github.com/serde-rs/serde) | `1.0.190` | `1.0.192` |
| [criterion](https://github.com/bheisler/criterion.rs) | `0.4.0` | `0.5.1` |
| [rayon](https://github.com/rayon-rs/rayon) | `1.7.0` | `1.8.0` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.10.0` | `0.10.1` |
| [flate2](https://github.com/rust-lang/flate2-rs) | `1.0.27` | `1.0.28` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` |


Updates `base64` from 0.21.4 to 0.21.5
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.21.4...v0.21.5)

Updates `prost` from 0.12.0 to 0.12.1
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.0...v0.12.1)

Updates `prost-types` from 0.12.0 to 0.12.1
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.0...v0.12.1)

Updates `insta` from 1.31.0 to 1.34.0
- [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md)
- [Commits](mitsuhiko/insta@1.31.0...1.34.0)

Updates `proptest` from 1.2.0 to 1.4.0
- [Release notes](https://github.com/proptest-rs/proptest/releases)
- [Changelog](https://github.com/proptest-rs/proptest/blob/master/CHANGELOG.md)
- [Commits](proptest-rs/proptest@v1.2.0...v1.4.0)

Updates `prost-build` from 0.12.0 to 0.12.1
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Commits](tokio-rs/prost@v0.12.0...v0.12.1)

Updates `protox` from 0.5.0 to 0.5.1
- [Changelog](https://github.com/andrewhickman/protox/blob/main/CHANGELOG.md)
- [Commits](https://github.com/andrewhickman/protox/commits)

Updates `serde_json` from 1.0.106 to 1.0.108
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.106...v1.0.108)

Updates `serde_yaml` from 0.9.25 to 0.9.27
- [Release notes](https://github.com/dtolnay/serde-yaml/releases)
- [Commits](dtolnay/serde-yaml@0.9.25...0.9.27)

Updates `proc-macro2` from 1.0.66 to 1.0.69
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.66...1.0.69)

Updates `syn` from 2.0.32 to 2.0.39
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.32...2.0.39)

Updates `trybuild` from 1.0.84 to 1.0.85
- [Release notes](https://github.com/dtolnay/trybuild/releases)
- [Commits](dtolnay/trybuild@1.0.84...1.0.85)

Updates `serde` from 1.0.190 to 1.0.192
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.190...v1.0.192)

Updates `criterion` from 0.4.0 to 0.5.1
- [Changelog](https://github.com/bheisler/criterion.rs/blob/master/CHANGELOG.md)
- [Commits](bheisler/criterion.rs@0.4.0...0.5.1)

Updates `rayon` from 1.7.0 to 1.8.0
- [Changelog](https://github.com/rayon-rs/rayon/blob/master/RELEASES.md)
- [Commits](rayon-rs/rayon@rayon-core-v1.7.0...rayon-core-v1.8.0)

Updates `env_logger` from 0.10.0 to 0.10.1
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.10.0...v0.10.1)

Updates `flate2` from 1.0.27 to 1.0.28
- [Release notes](https://github.com/rust-lang/flate2-rs/releases)
- [Commits](rust-lang/flate2-rs@1.0.27...1.0.28)

Updates `tempfile` from 3.8.0 to 3.8.1
- [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Stebalien/tempfile/commits)

---
updated-dependencies:
- dependency-name: base64
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: prost
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: prost-types
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: insta
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: proptest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: prost-build
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: protox
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: serde_yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: trybuild
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: criterion
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: rayon
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: flate2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 13, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 13, 2023

Superseded by #77.

@dependabot dependabot bot closed this Nov 13, 2023
@dependabot dependabot bot deleted the dependabot/cargo/production-dependencies-1836548887 branch November 13, 2023 14:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants