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

[cargo] Bump the non-major-dependencies group with 13 updates #1094

Merged
merged 2 commits into from
Sep 2, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2024

Bumps the non-major-dependencies group with 13 updates:

Package From To
clap_complete 4.5.12 4.5.13
iai-callgrind 0.12.1 0.12.3
iai-callgrind-runner 0.12.1 0.12.3
indexmap 2.3.0 2.5.0
napi 2.16.8 2.16.9
napi-derive 2.16.10 2.16.11
quote 1.0.36 1.0.37
regex 1.10.5 1.10.6
reqwest 0.12.5 0.12.7
serde 1.0.204 1.0.209
serde_json 1.0.121 1.0.127
syn 2.0.72 2.0.77
tempfile 3.10.1 3.12.0

Updates clap_complete from 4.5.12 to 4.5.13

Release notes

Sourced from clap_complete's releases.

v4.5.13

[4.5.13] - 2024-07-31

Fixes

  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help
Changelog

Sourced from clap_complete's changelog.

[4.5.13] - 2024-07-31

Fixes

  • (derive) Improve error message when #[flatten]ing an optional #[group(skip)]
  • (help) Properly wrap long subcommand descriptions in help
Commits
  • d222ae4 chore: Release
  • a8abcb4 docs: Update changelog
  • 2690e1b Merge pull request #5621 from shannmu/dynamic_valuehint
  • 7fd7b3e feat(clap_complete): Support to complete custom value of argument
  • fc6aaca Merge pull request #5638 from epage/cargo
  • 631e54b docs(cookbook): Style cargo plugin
  • 6fb49d0 Merge pull request #5636 from gibfahn/styles_const
  • 6f215ee refactor(styles): make styles example use a const
  • bbb2e6f test: Add test case for completing custom value of argument
  • 999071c fix: Change visible to hidden
  • Additional commits viewable in compare view

Updates iai-callgrind from 0.12.1 to 0.12.3

Release notes

Sourced from iai-callgrind's releases.

v0.12.3

[0.12.3] - 2024-08-09

Added

  • (#221): Add the LibraryBenchmarkConfig::truncate_description and BinaryBenchmarkConfig::truncate_description method to be able to adjust the truncation behaviour of the DESCRIPTION (as in benchmark_file::group::function_name id:DESCRIPTION) in the benchmark output.

Changed

  • (#221): Slightly increased the default truncation length of the description in the benchmark output to 50 ascii characters.
  • Update locked non-development dependencies:
    • tempfile: 3.11.0 -> 3.12.0
    • serde: 1.0.204 -> 1.0.205

Full Changelog: iai-callgrind/iai-callgrind@v0.12.2...v0.12.3

v0.12.2

[0.12.2] - 2024-08-06

Added

  • (#210): Add the file parameter to the #[benches] attribute to support creation of benchmarks from the specified file. Each line of this file represents a new benchmark and the read line is passed to the benchmark function or if the setup parameter is also present to the setup function.
  • (#211): Add support for a setup and teardown function in the library_benchmark_group and main macro. The group setup function is run before any benchmark of this group and the teardown function after all benchmarks of the same group. Similarly, the setup function of the main macro is run before any benchmark group and the teardown function after all benchmarks.

Changed

  • Update locked non-development dependencies:
    • regex: 1.10.5 -> 1.10.6
    • tempfile: 3.10.1 -> 3.11.0
    • serde_json: -> 1.0.121 -> 1.0.122
    • indexmap: 2.2.6 -> 2.3.0

Fixed

  • The library documentation in parts still mentioned EventKind::EstimatedCycles as default regression kind instead of EventKind::Ir. This default has changed in v0.11.0.

Full Changelog: iai-callgrind/iai-callgrind@v0.12.1...v0.12.2

Changelog

Sourced from iai-callgrind's changelog.

[0.12.3] - 2024-08-09

Added

  • (#221): Add the LibraryBenchmarkConfig::truncate_description and BinaryBenchmarkConfig::truncate_description method to be able to adjust the truncation behaviour of the DESCRIPTION (as in benchmark_file::group::function_name id:DESCRIPTION) in the benchmark output.

Changed

  • (#221): Slightly increase the default truncation length of the description in the benchmark output to 50 ascii characters.
  • Update locked non-development dependencies:
    • tempfile: 3.11.0 -> 3.12.0
    • serde: 1.0.204 -> 1.0.205

[0.12.2] - 2024-08-06

Added

  • (#210): Add the file parameter to the #[benches] attribute to support creation of benchmarks from the specified file. Each line of this file represents a new benchmark and the read line is passed to the benchmark function or if the setup parameter is also present to the setup function.
  • (#211): Add support for a setup and teardown function in the library_benchmark_group and main macro. The group setup function is run before any benchmark of this group and the teardown function after all benchmarks of the same group. Similarly, the setup function of the main macro is run before any benchmark group and the teardown function after all benchmarks.

Changed

  • Update locked non-development dependencies:
    • regex: 1.10.5 -> 1.10.6
    • tempfile: 3.10.1 -> 3.11.0
    • serde_json: -> 1.0.121 -> 1.0.122
    • indexmap: 2.2.6 -> 2.3.0

Fixed

  • The library documentation in parts still mentioned EventKind::EstimatedCycles as default regression kind instead of EventKind::Ir. This default has changed in v0.11.0.
Commits
  • 4d25cdd Merge branch 'release'
  • 30393ca tests(client_reqs): Fix filter cachegrind output if EXIDX warnings are present
  • 065f054 tests(client_reqs): Fix docker warning InvalidDefaultArgInFrom
  • a00864e Update CHANGELOG
  • 7bd2f52 Bump version v0.12.2 -> v0.12.3
  • b1310e0 Merge pull request #223 from iai-callgrind/renovate/serde-monorepo
  • 572a03f chore(deps): update rust crate serde to v1.0.205
  • ff83678 Merge pull request #221 from gamma0987/support-adjustment-truncation
  • bfbd944 Merge pull request #220 from iai-callgrind/renovate/tempfile-3.x-lockfile
  • 3d5d5b7 feat(truncate): Support adjustable truncation of description in output header
  • Additional commits viewable in compare view

Updates iai-callgrind-runner from 0.12.1 to 0.12.3

Release notes

Sourced from iai-callgrind-runner's releases.

v0.12.3

[0.12.3] - 2024-08-09

Added

  • (#221): Add the LibraryBenchmarkConfig::truncate_description and BinaryBenchmarkConfig::truncate_description method to be able to adjust the truncation behaviour of the DESCRIPTION (as in benchmark_file::group::function_name id:DESCRIPTION) in the benchmark output.

Changed

  • (#221): Slightly increased the default truncation length of the description in the benchmark output to 50 ascii characters.
  • Update locked non-development dependencies:
    • tempfile: 3.11.0 -> 3.12.0
    • serde: 1.0.204 -> 1.0.205

Full Changelog: iai-callgrind/iai-callgrind@v0.12.2...v0.12.3

v0.12.2

[0.12.2] - 2024-08-06

Added

  • (#210): Add the file parameter to the #[benches] attribute to support creation of benchmarks from the specified file. Each line of this file represents a new benchmark and the read line is passed to the benchmark function or if the setup parameter is also present to the setup function.
  • (#211): Add support for a setup and teardown function in the library_benchmark_group and main macro. The group setup function is run before any benchmark of this group and the teardown function after all benchmarks of the same group. Similarly, the setup function of the main macro is run before any benchmark group and the teardown function after all benchmarks.

Changed

  • Update locked non-development dependencies:
    • regex: 1.10.5 -> 1.10.6
    • tempfile: 3.10.1 -> 3.11.0
    • serde_json: -> 1.0.121 -> 1.0.122
    • indexmap: 2.2.6 -> 2.3.0

Fixed

  • The library documentation in parts still mentioned EventKind::EstimatedCycles as default regression kind instead of EventKind::Ir. This default has changed in v0.11.0.

Full Changelog: iai-callgrind/iai-callgrind@v0.12.1...v0.12.2

Changelog

Sourced from iai-callgrind-runner's changelog.

[0.12.3] - 2024-08-09

Added

  • (#221): Add the LibraryBenchmarkConfig::truncate_description and BinaryBenchmarkConfig::truncate_description method to be able to adjust the truncation behaviour of the DESCRIPTION (as in benchmark_file::group::function_name id:DESCRIPTION) in the benchmark output.

Changed

  • (#221): Slightly increase the default truncation length of the description in the benchmark output to 50 ascii characters.
  • Update locked non-development dependencies:
    • tempfile: 3.11.0 -> 3.12.0
    • serde: 1.0.204 -> 1.0.205

[0.12.2] - 2024-08-06

Added

  • (#210): Add the file parameter to the #[benches] attribute to support creation of benchmarks from the specified file. Each line of this file represents a new benchmark and the read line is passed to the benchmark function or if the setup parameter is also present to the setup function.
  • (#211): Add support for a setup and teardown function in the library_benchmark_group and main macro. The group setup function is run before any benchmark of this group and the teardown function after all benchmarks of the same group. Similarly, the setup function of the main macro is run before any benchmark group and the teardown function after all benchmarks.

Changed

  • Update locked non-development dependencies:
    • regex: 1.10.5 -> 1.10.6
    • tempfile: 3.10.1 -> 3.11.0
    • serde_json: -> 1.0.121 -> 1.0.122
    • indexmap: 2.2.6 -> 2.3.0

Fixed

  • The library documentation in parts still mentioned EventKind::EstimatedCycles as default regression kind instead of EventKind::Ir. This default has changed in v0.11.0.
Commits
  • 4d25cdd Merge branch 'release'
  • 30393ca tests(client_reqs): Fix filter cachegrind output if EXIDX warnings are present
  • 065f054 tests(client_reqs): Fix docker warning InvalidDefaultArgInFrom
  • a00864e Update CHANGELOG
  • 7bd2f52 Bump version v0.12.2 -> v0.12.3
  • b1310e0 Merge pull request #223 from iai-callgrind/renovate/serde-monorepo
  • 572a03f chore(deps): update rust crate serde to v1.0.205
  • ff83678 Merge pull request #221 from gamma0987/support-adjustment-truncation
  • bfbd944 Merge pull request #220 from iai-callgrind/renovate/tempfile-3.x-lockfile
  • 3d5d5b7 feat(truncate): Support adjustable truncation of description in output header
  • Additional commits viewable in compare view

Updates indexmap from 2.3.0 to 2.5.0

Changelog

Sourced from indexmap's changelog.

2.5.0

  • Added an insert_before method to IndexMap and IndexSet, as an alternative to shift_insert with different behavior on existing entries.
  • Added first_entry and last_entry methods to IndexMap.
  • Added From implementations between IndexedEntry and OccupiedEntry.

2.4.0

  • Added methods IndexMap::append and IndexSet::append, moving all items from one map or set into another, and leaving the original capacity for reuse.
Commits
  • 48ed490 Release 2.5.0
  • 139d7ad Merge pull request #340 from cuviper/insert-bounds
  • 1d9b5e3 Add doc examples for insert_before and shift_insert
  • 8ca01b0 Use insert_before for "new" entries in insert_sorted
  • 7224def Add insert_before as an alternate to shift_insert
  • 0247a15 Document and assert index bounds in shift_insert
  • 922c6ad Update the CI badge
  • e482e17 Merge pull request #342 from cuviper/btree-like
  • b63e4a1 Merge pull request #341 from cuviper/from-entry
  • 264e5b7 Add doc aliases like BTreeMap/BTreeSet
  • Additional commits viewable in compare view

Updates napi from 2.16.8 to 2.16.9

Release notes

Sourced from napi's releases.

napi-derive@2.16.9

What's Changed

New Contributors

Full Changelog: https://github.com/napi-rs/napi-rs/compare/napi-derive@2.16.8...napi-derive@2.16.9

napi@2.16.9

What Changed

Full Changelog: https://github.com/napi-rs/napi-rs/compare/napi@2.16.8...napi@2.16.9

Commits
  • 9dc72b5 Release independent packages
  • 1dad511 fix(napi-derive): add more cases for typegen of function args (#2210)
  • 1b3c004 chore: implement serde::Serialize for Either (#2209)
  • d7ffe09 Release independent packages
  • cfe88fe fix(napi-derive): call flush on the BufWriter (#2195)
  • e9f66ff Release independent packages
  • bd950b3 fix(napi-derive): napi getter macros (#2188)
  • fc87271 Release independent packages
  • 18eb407 fix(napi-derive): missing declare keyword for function
  • 1f407b9 Release independent packages
  • Additional commits viewable in compare view

Updates napi-derive from 2.16.10 to 2.16.11

Release notes

Sourced from napi-derive's releases.

napi-derive@2.16.11

What Changed

Full Changelog: https://github.com/napi-rs/napi-rs/compare/napi-derive@2.16.10...napi-derive@2.16.11

Commits

Updates quote from 1.0.36 to 1.0.37

Release notes

Sourced from quote's releases.

1.0.37

  • Implement ToTokens for CStr and CString (#283)
Commits
  • b1ebffa Release 1.0.37
  • 43acd77 Delete unneeded use of ref
  • 9382c21 Merge pull request #283 from dtolnay/cstr
  • 6ac4328 Add C string tests
  • 9fb0591 Implement ToTokens for CStr and CString
  • ba7a9d0 Organize test imports
  • aa9970f Inline the macro that generates primitive impls
  • ba41109 Merge pull request #282 from dtolnay/tokens
  • c77340a Consistently use 'tokens' as the name of the &mut TokenStream arg
  • a4a0abf Merge pull request #281 from dtolnay/char
  • Additional commits viewable in compare view

Updates regex from 1.10.5 to 1.10.6

Changelog

Sourced from regex's changelog.

1.10.6 (2024-08-02)

This is a new patch release with a fix for the unstable crate feature that enables std::str::Pattern trait integration.

Bug fixes:

Commits

Updates reqwest from 0.12.5 to 0.12.7

Release notes

Sourced from reqwest's releases.

v0.12.7

What's Changed

  • Revert adding impl Service<http::Request<_>> for Client.

Full Changelog: seanmonstar/reqwest@v0.12.6...v0.12.7

v0.12.6

What's Changed

  • Add support for danger_accept_invalid_hostnames for rustls.
  • Add impl Service<http::Request<Body>> for Client and &'_ Client.
  • Add support for !Sync bodies in Body::wrap_stream().
  • Enable happy eyeballs when hickory-dns is used.
  • Fix Proxy so that HTTP(S)_PROXY values take precendence over ALL_PROXY.
  • Fix blocking::RequestBuilder::header() from unsetting sensitive on passed header values.

New Contributors

Thanks again

Full Changelog: seanmonstar/reqwest@v0.12.5...v0.12.6

Changelog

Sourced from reqwest's changelog.

v0.12.7

  • Revert adding impl Service<http::Request<_>> for Client.

v0.12.6

  • Add support for danger_accept_invalid_hostnames for rustls.
  • Add impl Service<http::Request<Body>> for Client and &'_ Client.
  • Add support for !Sync bodies in Body::wrap_stream().
  • Enable happy eyeballs when hickory-dns is used.
  • Fix Proxy so that HTTP(S)_PROXY values take precendence over ALL_PROXY.
  • Fix blocking::RequestBuilder::header() from unsetting sensitive on passed header values.
Commits
  • 88bd9be v0.12.7
  • 68127f0 Revert "feat: Add impl Service\<http::Request<Body>> for Client and `&'_ C...
  • b2a28f5 v0.12.6
  • 522216e feat: Add impl Service\<http::Request<Body>> for Client and &'_ Client (...
  • 646b1f8 chore: update macOS system-configuration dep (#2368)
  • 85dd6da dns: improve error message for hickory-dns and warn in docs (#2389)
  • bfd31be docs: Improve RequestBuilder::multipart's documentation (#2388)
  • 8c7f338 chore: bump dev-dependency libflate (#2382)
  • dddf877 chore: bump h3 dependency
  • a53c944 chore: fix some comments
  • Additional commits viewable in compare view

Updates serde from 1.0.204 to 1.0.209

Release notes

Sourced from serde's releases.

v1.0.209

  • Fix deserialization of empty structs and empty tuples inside of untagged enums (#2805, thanks @​Mingun)

v1.0.208

  • Support serializing and deserializing unit structs in a flatten field (#2802, thanks @​jonhoo)

v1.0.207

  • Improve interactions between flatten attribute and skip_serializing/skip_deserializing (#2795, thanks @​Mingun)

v1.0.206

  • Improve support for flatten attribute inside of enums (#2567, thanks @​Mingun)

v1.0.205

  • Use serialize_entry instead of serialize_key + serialize_value when serialize flattened newtype enum variants (#2785, thanks @​Mingun)
  • Avoid triggering a collection_is_never_read lint in the deserialization of enums containing flattened fields (#2791)
Commits
  • 30752ac Release 1.0.209
  • b84e6ca Improve wording of PR 2805 comments
  • 87a2fb0 Wrap comments from PR 2805 to 80 columns
  • 9eaf7b9 Merge pull request #2805 from Mingun/untagged-tests
  • 7bde100 Replace MapRefDeserializer with value::MapDeserializer
  • da7fc79 Fix deserialization of empty struct variant in untagged enums
  • 4c5fec1 Test special cases that reaches SeqRefDeserializer::deserialize_any len==0 co...
  • 6588b0a Cover Content::Seq case in VariantRefDeserializer::struct_variant
  • 0093f74 Split test newtype_enum into four tests for each variant
  • 171c6da Complete coverage of ContentRefDeserializer::deserialize_newtype_struct
  • Additional commits viewable in compare view

Updates serde_json from 1.0.121 to 1.0.127

Release notes

Sourced from serde_json's releases.

1.0.127

1.0.126

  • Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (#1182, thanks @​CryZe)

1.0.125

  • Speed up \uXXXX parsing and improve handling of unpaired surrogates when deserializing to bytes (#1172, #1175, thanks @​purplesyringa)

v1.0.124

v1.0.123

v1.0.122

  • Support using json! in no-std crates (#1166)
Commits
  • 5ebf65c Release 1.0.127
  • f287a3b Merge pull request 1179 from GREsau/patch-1
  • ec980b0 Release 1.0.126
  • e6282b0 Merge pull request #1184 from serde-rs/fastarithmetic
  • ffc4a43 Improve cfg names for fast arithmetic
  • 4b1048d Merge pull request #1183 from serde-rs/arithmetic
  • f268173 Unify chunk size choice between float and string parsing
  • fec0376 Merge pull request #1182 from CryZe/chunk-64bit
  • 3d837e1 Ensure the SWAR chunks are 64-bit in more cases
  • 11fc61c Add OccupiedEntry::shift_remove() and swap_remove()
  • Additional commits viewable in compare view

Updates syn from 2.0.72 to 2.0.77

Release notes

Sourced from syn's releases.

2.0.77

  • Support parsing Expr::Tuple in non-"full" mode (#1727)

2.0.76

  • Enforce that tail call become keyword is followed by an expression (#1725)

2.0.75

  • Automatically fill in missing turbofish when printing ExprPath and other paths in expression position (#1722)

2.0.74

  • Fix "temporary is dropped and runs the destructor for type `impl Iterator`" regression affecting certain use of Generics iterator methods (#1719)

2.0.73

Commits
  • 6232266 Release 2.0.77
  • 97acbf0 Merge pull request #1727 from dtolnay/exprparen
  • a3b5a5c Support parsing Expr::Tuple in derive
  • 3c24f57 Run upload-artifact action regardless of previous step failure
  • 78608a3 Upload CI Cargo.lock for reproducing failures
  • ef3e9c6 Release 2.0.76
  • 8f7365f Merge pull request #1725 from dtolnay/tailcall
  • 6cddd9e Make tail call expr mandatory
  • d1746fe Release 2.0.75
  • b693682 Merge pull request #1722 from dtolnay/exprpath
  • Additional commits viewable in compare view

Updates tempfile from 3.10.1 to 3.12.0

Changelog

Sourced from tempfile's changelog.

3.12.0

  • Add a keep(keep: bool) function to builder that suppresses delete-on-drop behavior (thanks to @​RalfJung).
  • Update windows-sys from 0.52 to 0.59.

3.11.0

  • Add the ability to override the default temporary directory. This API shouldn't be used in general, but there are some cases where it's unavoidable.
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 non-major-dependencies group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [clap_complete](https://github.com/clap-rs/clap) | `4.5.12` | `4.5.13` |
| [iai-callgrind](https://github.com/iai-callgrind/iai-callgrind) | `0.12.1` | `0.12.3` |
| [iai-callgrind-runner](https://github.com/iai-callgrind/iai-callgrind) | `0.12.1` | `0.12.3` |
| [indexmap](https://github.com/indexmap-rs/indexmap) | `2.3.0` | `2.5.0` |
| [napi](https://github.com/napi-rs/napi-rs) | `2.16.8` | `2.16.9` |
| [napi-derive](https://github.com/napi-rs/napi-rs) | `2.16.10` | `2.16.11` |
| [quote](https://github.com/dtolnay/quote) | `1.0.36` | `1.0.37` |
| [regex](https://github.com/rust-lang/regex) | `1.10.5` | `1.10.6` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.5` | `0.12.7` |
| [serde](https://github.com/serde-rs/serde) | `1.0.204` | `1.0.209` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.121` | `1.0.127` |
| [syn](https://github.com/dtolnay/syn) | `2.0.72` | `2.0.77` |
| [tempfile](https://github.com/Stebalien/tempfile) | `3.10.1` | `3.12.0` |


Updates `clap_complete` from 4.5.12 to 4.5.13
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.12...clap_complete-v4.5.13)

Updates `iai-callgrind` from 0.12.1 to 0.12.3
- [Release notes](https://github.com/iai-callgrind/iai-callgrind/releases)
- [Changelog](https://github.com/iai-callgrind/iai-callgrind/blob/main/CHANGELOG.md)
- [Commits](iai-callgrind/iai-callgrind@v0.12.1...v0.12.3)

Updates `iai-callgrind-runner` from 0.12.1 to 0.12.3
- [Release notes](https://github.com/iai-callgrind/iai-callgrind/releases)
- [Changelog](https://github.com/iai-callgrind/iai-callgrind/blob/main/CHANGELOG.md)
- [Commits](iai-callgrind/iai-callgrind@v0.12.1...v0.12.3)

Updates `indexmap` from 2.3.0 to 2.5.0
- [Changelog](https://github.com/indexmap-rs/indexmap/blob/master/RELEASES.md)
- [Commits](indexmap-rs/indexmap@2.3.0...2.5.0)

Updates `napi` from 2.16.8 to 2.16.9
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Commits](https://github.com/napi-rs/napi-rs/compare/napi@2.16.8...napi@2.16.9)

Updates `napi-derive` from 2.16.10 to 2.16.11
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Commits](https://github.com/napi-rs/napi-rs/compare/napi-derive@2.16.10...napi-derive@2.16.11)

Updates `quote` from 1.0.36 to 1.0.37
- [Release notes](https://github.com/dtolnay/quote/releases)
- [Commits](dtolnay/quote@1.0.36...1.0.37)

Updates `regex` from 1.10.5 to 1.10.6
- [Release notes](https://github.com/rust-lang/regex/releases)
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md)
- [Commits](rust-lang/regex@1.10.5...1.10.6)

Updates `reqwest` from 0.12.5 to 0.12.7
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.12.5...v0.12.7)

Updates `serde` from 1.0.204 to 1.0.209
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.204...v1.0.209)

Updates `serde_json` from 1.0.121 to 1.0.127
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.121...1.0.127)

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

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

---
updated-dependencies:
- dependency-name: clap_complete
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: iai-callgrind
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: iai-callgrind-runner
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: indexmap
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
- dependency-name: napi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: napi-derive
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: quote
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: non-major-dependencies
- dependency-name: tempfile
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: non-major-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner September 1, 2024 07:52
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 1, 2024
Copy link

changeset-bot bot commented Sep 1, 2024

⚠️ No Changeset found

Latest commit: 410a3d2

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@OmarTawfik OmarTawfik added this pull request to the merge queue Sep 2, 2024
Merged via the queue into main with commit 872ef97 Sep 2, 2024
2 checks passed
@OmarTawfik OmarTawfik deleted the dependabot/cargo/non-major-dependencies-adfd6445ff branch September 2, 2024 00:25
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.

1 participant