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

chore: Bump the dev-dependencies group with 7 updates #193

Merged
merged 2 commits into from
Sep 21, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 18, 2023

Bumps the dev-dependencies group with 7 updates:

Package From To
async-recursion 1.0.4 1.0.5
tonic-reflection 0.9.2 0.10.0
regex 1.9.4 1.9.5
serde_json 1.0.105 1.0.107
base64 0.21.3 0.21.4
bollard 0.14.0 0.15.0
bytes 1.4.0 1.5.0

Updates async-recursion from 1.0.4 to 1.0.5

Release notes

Sourced from async-recursion's releases.

v1.0.5

What's Changed

Full Changelog: dcchut/async-recursion@v1.0.4...v1.0.5

Commits

Updates tonic-reflection from 0.9.2 to 0.10.0

Changelog

Sourced from tonic-reflection's changelog.

v0.10.0 (2023-09-01)

Breaking Changes

  • Update to prost 0.12
  • MSRV bumped to 1.64

Bug Fixes

Features

  • build: Add optional default unimplemented stubs (#1344) (aff1daf)
  • core: amortize many ready messages into fewer, larger buffers (#1423) (76eedc1)
  • types: add ability to extract rich error details from google.rpc.Status (#1430) (5fd635a)
  • transport: Add Router::into_router (#1442) (ea06a1b)
  • transport: Expose TcpConnectInfo fields (#1449) (74b079c)
  • web: Add GrpcWebClientService (#1472) (dc29c17)
  • transport: Support for adding services dynamically
Commits

Updates regex from 1.9.4 to 1.9.5

Changelog

Sourced from regex's changelog.

1.9.5 (2023-09-02)

This is a patch release that hopefully mostly fixes a performance bug that occurs when sharing a regex across multiple threads.

Issue #934 explains this in more detail. It is also noted in the crate documentation. The bug can appear when sharing a regex across multiple threads simultaneously, as might be the case when using a regex from a OnceLock, lazy_static or similar primitive. Usually high contention only results when using many threads to execute searches on small haystacks.

One can avoid the contention problem entirely through one of two methods. The first is to use lower level APIs from regex-automata that require passing state explicitly, such as meta::Regex::search_with. The second is to clone a regex and send it to other threads explicitly. This will not use any additional memory usage compared to sharing the regex. The only downside of this approach is that it may be less convenient, for example, it won't work with things like OnceLock or lazy_static or once_cell.

With that said, as of this release, the contention performance problems have been greatly reduced. This was achieved by changing the free-list so that it was sharded across threads, and that ensuring each sharded mutex occupies a single cache line to mitigate false sharing. So while contention may still impact performance in some cases, it should be a lot better now.

Because of the changes to how the free-list works, please report any issues you find with this release. That not only includes search time regressions but also significant regressions in memory usage. Reporting improvements is also welcome as well! If possible, provide a reproduction.

Bug fixes:

  • [BUG #934](rust-lang/regex#934): Fix a performance bug where high contention on a single regex led to massive slow downs.
Commits

Updates serde_json from 1.0.105 to 1.0.107

Release notes

Sourced from serde_json's releases.

v1.0.107

  • impl IntoDeserializer for &RawValue (#1071)

v1.0.106

Commits
  • b6e113f Release 1.0.107
  • 00626a0 Merge pull request #1073 from dtolnay/rawvalue
  • b9d296f IntoDeserializer for &RawValue
  • 4ea34a2 Merge pull request #1072 from dtolnay/rawvalue
  • fe30766 Support deserializing from &RawValue
  • 2c22077 Merge pull request #1062 from osiewicz/remove_build_rs
  • 04f7758 fixup! chore: Remove no_btreemap_get_key_value and no_btreemap_remove_entry.
  • 83bdc5f Omit return keyword in remove_entry
  • 89a2741 Revert "Remove limb_width32 and limb_width64 features"
  • 45f10ec Release 1.0.106
  • Additional commits viewable in compare view

Updates base64 from 0.21.3 to 0.21.4

Changelog

Sourced from base64's changelog.

0.21.4

  • Make encoded_len const, allowing the creation of arrays sized to encode compile-time-known data lengths
Commits

Updates bollard from 0.14.0 to 0.15.0

Release notes

Sourced from bollard's releases.

Release v0.15.0

What's Changed

New Contributors

Full Changelog: fussybeaver/bollard@v0.14.0...v0.15.0

Commits
  • 6ecdb14 Merge pull request #336 from fussybeaver/ND-0.15-release
  • 079e4c2 Bump bollard version to 0.15
  • a61b6c6 Optimise dependencies
  • 0b58b33 Add latest to documentation
  • b8bec2e Bump API working version number
  • 6df205a Bump codegen dependencies and version numbers
  • 3c101a7 Merge pull request #335 from fussybeaver/ND-changes-image-create-options
  • da2d2af Serialize changes field in CreateImageOptions
  • 086f806 Remove unwraps, improve errors
  • 71c6502 Add changes field to CreateImageOptions
  • Additional commits viewable in compare view

Updates bytes from 1.4.0 to 1.5.0

Release notes

Sourced from bytes's releases.

Bytes v1.5.0

1.5.0 (September 7, 2023)

Added

  • Add UninitSlice::{new,uninit} (#598, #599)
  • Implement BufMut for &mut [MaybeUninit<u8>] (#597)

Changed

  • Mark BytesMut::extend_from_slice as inline (#595)
Changelog

Sourced from bytes's changelog.

1.5.0 (September 7, 2023)

Added

  • Add UninitSlice::{new,uninit} (#598, #599)
  • Implement BufMut for &mut [MaybeUninit<u8>] (#597)

Changed

  • Mark BytesMut::extend_from_slice as inline (#595)
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 dev-dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [async-recursion](https://github.com/dcchut/async-recursion) | `1.0.4` | `1.0.5` |
| [tonic-reflection](https://github.com/hyperium/tonic) | `0.9.2` | `0.10.0` |
| [regex](https://github.com/rust-lang/regex) | `1.9.4` | `1.9.5` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.105` | `1.0.107` |
| [base64](https://github.com/marshallpierce/rust-base64) | `0.21.3` | `0.21.4` |
| [bollard](https://github.com/fussybeaver/bollard) | `0.14.0` | `0.15.0` |
| [bytes](https://github.com/tokio-rs/bytes) | `1.4.0` | `1.5.0` |


Updates `async-recursion` from 1.0.4 to 1.0.5
- [Release notes](https://github.com/dcchut/async-recursion/releases)
- [Commits](dcchut/async-recursion@v1.0.4...v1.0.5)

Updates `tonic-reflection` from 0.9.2 to 0.10.0
- [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md)
- [Commits](hyperium/tonic@v0.9.2...v0.10.0)

Updates `regex` from 1.9.4 to 1.9.5
- [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.9.4...1.9.5)

Updates `serde_json` from 1.0.105 to 1.0.107
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.105...v1.0.107)

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

Updates `bollard` from 0.14.0 to 0.15.0
- [Release notes](https://github.com/fussybeaver/bollard/releases)
- [Commits](fussybeaver/bollard@v0.14.0...v0.15.0)

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

---
updated-dependencies:
- dependency-name: async-recursion
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: tonic-reflection
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: base64
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dev-dependencies
- dependency-name: bollard
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
- dependency-name: bytes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 18, 2023
@devkelley devkelley merged commit b74014a into main Sep 21, 2023
11 checks passed
@dependabot dependabot bot deleted the dependabot/cargo/dev-dependencies-a592e73a3b branch September 21, 2023 17:29
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.

2 participants