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 dependencies group with 5 updates #2007

Merged
merged 3 commits into from
Sep 4, 2023

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the dependencies group with 5 updates:

Package From To
thiserror 1.0.47 1.0.48
clap 4.4.1 4.4.2
regex 1.9.4 1.9.5
chrono 0.4.26 0.4.28
octocrab 0.29.3 0.30.1

Updates thiserror from 1.0.47 to 1.0.48

Release notes

Sourced from thiserror's releases.

1.0.48

  • Improve implementation of displaying Path values in a generated Display impl (#251, thanks @​mina86)
Commits
  • 5c5f342 Release 1.0.48
  • 490f0ca Merge pull request #254 from dtolnay/gatlink
  • 1a5dbc7 Add link to GAT PR
  • de58088 Ignore uninlined_format_args pedantic clippy lint in test
  • ae642d1 Format clippy allow attribute with rustfmt
  • b97fc53 Remove doc_markdown suppression because clippy bug was fixed
  • 140eb03 Ignore needless_lifetimes clippy lint
  • 1f5cbd7 Ignore manual_let_else pedantic clippy lint
  • 080cac5 Ignore uninlined_format_args pedantic clippy lint
  • 134695a Merge pull request #252 from dtolnay/safedisplay
  • Additional commits viewable in compare view

Updates clap from 4.4.1 to 4.4.2

Release notes

Sourced from clap's releases.

v4.4.2

[4.4.2] - 2023-08-31

Performance

  • Improve build times by removing once_cell dependency
Changelog

Sourced from clap's changelog.

[4.4.2] - 2023-08-31

Performance

  • Improve build times by removing once_cell dependency
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 chrono from 0.4.26 to 0.4.28

Release notes

Sourced from chrono's releases.

0.4.28

This release fixes a test failure on 32-bit targets introduced with 0.4.27, see chronotope/chrono#1234.

0.4.27

This release bumps the MSRV from 1.56 to 1.57. This allows us to take advantage of the panicking in const feature. In this release most methods on NaiveDate and NaiveTime are made const, NaiveDateTime and others will follow in a later release.

The parser for the %+ formatting specifier and the RFC3339 formatting item is switched from a strict to a relaxed parser (see chronotope/chrono#1145). This matches the existing documentation, and the parser used by DateTime::from_str. If you need to validate the input, consider using DateTime::from_rfc3339.

Deprecations

Additions

Fixes

Documentation

... (truncated)

Commits
  • 243d26d Bump version to 0.4.28
  • 80946ed Fix test_type_types on 32-bit targets
  • b6a5244 Add pitdicker as an author
  • b5a9850 Bump version to 0.4.27
  • 00d389e CI: Skip winapi feature in cargo hack check
  • 30b6294 Switch to windows-bindgen
  • 9ab0259 Remove hack to accept "UTC" in timezone_offset_zulu
  • e985f08 Switch RFC3339 formatting item to relaxed parser to match documentation
  • 3f8a500 Use parse_rfc3339 directly in DateTime::parse_from_rfc3339
  • ccd7f85 Allow 't' as a seperator between date and time in parse_rfc3339_relaxed
  • Additional commits viewable in compare view

Updates octocrab from 0.29.3 to 0.30.1

Release notes

Sourced from octocrab's releases.

v0.30.1

Other

  • add tracing debug only when tracing feature is enabled (#454)

v0.30.0

Other

  • Fix commit_comment webhook event parsing (#453)
  • Add Octocrab::users() and UsersHandler::repos (#451)
  • Add CommitHandler::associated_check_runs (#450)
  • Fix installation token cache issue (#442)
  • Add projects Api (#447)
  • Enhance installation webhook events
  • Add test for push webhook event
  • Implement custom deserialization for hybrid Github API timestamps
  • Make webhook_events deserialization tests more robust
Changelog

Sourced from octocrab's changelog.

0.30.1 - 2023-09-04

Other

  • add tracing debug only when tracing feature is enabled (#454)

0.30.0 - 2023-09-01

Other

  • Fix commit_comment webhook event parsing (#453)
  • Add Octocrab::users() and UsersHandler::repos (#451)
  • Add CommitHandler::associated_check_runs (#450)
  • Fix installation token cache issue (#442)
  • Add projects Api (#447)
  • Enhance installation webhook events
  • Add test for push webhook event
  • Implement custom deserialization for hybrid Github API timestamps
  • Make webhook_events deserialization tests more robust
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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Sep 4, 2023
dependabot bot and others added 3 commits September 4, 2023 15:50
Bumps the dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.47` | `1.0.48` |
| [clap](https://github.com/clap-rs/clap) | `4.4.1` | `4.4.2` |
| [regex](https://github.com/rust-lang/regex) | `1.9.4` | `1.9.5` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.26` | `0.4.28` |
| [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.29.3` | `0.30.1` |


Updates `thiserror` from 1.0.47 to 1.0.48
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.47...1.0.48)

Updates `clap` from 4.4.1 to 4.4.2
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@v4.4.1...v4.4.2)

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 `chrono` from 0.4.26 to 0.4.28
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.26...v0.4.28)

Updates `octocrab` from 0.29.3 to 0.30.1
- [Release notes](https://github.com/XAMPPRocky/octocrab/releases)
- [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md)
- [Commits](XAMPPRocky/octocrab@v0.29.3...v0.30.1)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: regex
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: octocrab
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@hannobraun hannobraun force-pushed the dependabot/cargo/dependencies-358336831c branch from 0cb736c to 2fb7c57 Compare September 4, 2023 13:50
@hannobraun hannobraun merged commit 2c1ea36 into main Sep 4, 2023
5 checks passed
@hannobraun hannobraun deleted the dependabot/cargo/dependencies-358336831c branch September 4, 2023 13:58
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 rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant