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

build(deps): bump the minor group across 1 directory with 12 updates #474

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 10, 2025

Bumps the minor group with 12 updates in the / directory:

Package From To
crossterm 0.28.1 0.29.0
tokio 1.44.1 1.44.2
tracing-opentelemetry 0.29.0 0.30.0
opentelemetry_sdk 0.28.0 0.29.0
opentelemetry 0.28.0 0.29.1
opentelemetry-otlp 0.28.0 0.29.0
tui-logger 0.14.5 0.17.0
octocrab 0.43.0 0.44.0
clap 4.5.34 4.5.35
rust-embed 8.6.0 8.7.0
libduckdb-sys 1.1.1 1.2.1
openssl-sys 0.9.106 0.9.107

Updates crossterm from 0.28.1 to 0.29.0

Release notes

Sourced from crossterm's releases.

0.29

Version 0.29

Added ⭐

  • Copy to clipboard using OSC52 (#974)
  • Derive standard traits for "SetCursorStyle" (#909)
  • Add query_keyboard_enhancement_flags to read enabled flags (#958)
  • Add is_* and as_* methods to the event enums (#949)
  • Add a feature flag for derive_more impls (#970)
  • Update rustix to 1.0 (#982)
  • Upgrade various dependencies

Breaking ⚠️

  • Correctly fix KeyModifiers Display impl Properly adding + in between modifiers (#979)

@​joshka @​linrongbin16 @​kmicklas @​maciek50322 @​rosew0od @​sxyazi @​the-mikedavis @​hthuz @​aschey @​naseschwarz @​Flokkq @​gaesa @​WindSoilder

Changelog

Sourced from crossterm's changelog.

Unreleased

Version 0.29

Added ⭐

  • Copy to clipboard using OSC52 (#974)
  • Derive standard traits for "SetCursorStyle" (#909)
  • Add query_keyboard_enhancement_flags to read enabled flags (#958)
  • Add is_* and as_* methods to the event enums (#949)
  • Add a feature flag for derive_more impls (#970)
  • Update rustix to 1.0 (#982)

Breaking ⚠️

  • Correctly fix KeyModifiers Display impl Properly adding + in between modifiers (#979)
Commits

Updates tokio from 1.44.1 to 1.44.2

Release notes

Sourced from tokio's releases.

Tokio v1.44.2

This release fixes a soundness issue in the broadcast channel. The channel accepts values that are Send but !Sync. Previously, the channel called clone() on these values without synchronizing. This release fixes the channel by synchronizing calls to .clone() (Thanks Austin Bonander for finding and reporting the issue).

Fixed

  • sync: synchronize clone() call in broadcast channel (#7232)

#7232: tokio-rs/tokio#7232

Commits
  • ec4b1d7 chore: forward port 1.43.x
  • e3c3a56 Merge branch 'tokio-1.43.x' into forward-port-1.43.x
  • a7b658c chore: prepare Tokio v1.43.1 release
  • c1c8d10 Merge remote-tracking branch 'origin/tokio-1.38.x' into forward-port-1.38.x
  • aa303bc chore: prepare Tokio v1.38.2 release
  • 7b6ccb5 chore: backport CI fixes
  • 4b174ce sync: fix cloning value when receiving from broadcast channel
  • See full diff in compare view

Updates tracing-opentelemetry from 0.29.0 to 0.30.0

Release notes

Sourced from tracing-opentelemetry's releases.

0.30.0

What's Changed

Changelog

Sourced from tracing-opentelemetry's changelog.

0.30.0 (March 23, 2025)

Breaking Changes

  • Upgrade from opentelemetry 0.28.0 to 0.29.0. Refer to the upstream changelog for more information.

0.27.0 (October 9, 2024)

Breaking Changes

  • Upgrade to opentelemetry 0.26. Refer to the upstream changelog for more information.

0.26.0 (September 10, 2024)

Breaking Changes

  • Upgrade to opentelemetry 0.25. Refer to the upstream changelog for more information.

0.25.0 (July 21, 2024)

Breaking Changes

  • Upgrade to opentelemetry 0.24. Refer to the upstream changelog for more information.

Fixed

  • Invalidate sample decision on set parent (#153)
  • chore: fix on_close() comment (#148)

0.24.0 (May 24, 2024)

Breaking Changes

  • Upgrade to opentelemetry 0.23. Refer to the upstream changelog for more information.

Added

  • Added gauge metrics (#129)

Fixed

... (truncated)

Commits

Updates opentelemetry_sdk from 0.28.0 to 0.29.0

Commits

Updates opentelemetry from 0.28.0 to 0.29.1

Release notes

Sourced from opentelemetry's releases.

0.29.0 Release

See changelog for individual crates to know the exact set of changes. All crates in this repo follows same version (0.29.0 for this release).

This release also upgrades

  • Logs-SDK to stable
  • Logs-Appender-Tracing to stable
  • Baggage to RC

And deprecates

  • Prometheus exporter is - now deprecated in favor of OTLP exporter.
Commits

Updates opentelemetry-otlp from 0.28.0 to 0.29.0

Release notes

Sourced from opentelemetry-otlp's releases.

0.29.0 Release

See changelog for individual crates to know the exact set of changes. All crates in this repo follows same version (0.29.0 for this release).

This release also upgrades

  • Logs-SDK to stable
  • Logs-Appender-Tracing to stable
  • Baggage to RC

And deprecates

  • Prometheus exporter is - now deprecated in favor of OTLP exporter.
Commits

Updates tui-logger from 0.14.5 to 0.17.0

Changelog

Sourced from tui-logger's changelog.

0.17.0 - 2025-03-11

Other

  • file/module_path/line are now Option, because log::Record defines them as such, too

0.16.0 - 2025-03-10

Other

  • ExtLogRecord stores for file and module_path their static strings, if available. In addition provides module_path getter
  • provide accessors for the strings
  • update DEV_NOTES

0.15.0 - 2025-03-08

Fixed

  • fix bug with page up at top

Other

  • lib.rs factoring complete
  • refactor TuiLoggerError out of lib.rs
  • refactor TuiLogger API out of lib.rs
  • refactor TuiLogger out of lib.rs
  • refactor LevelConfig out of lib.rs
  • refactor TuiLoggerTargetWidget out of lib.rs
  • reduce visibility of internal structures
  • add test case for log message being larger than widget
  • turn off debugging
  • add test case with standard formatter
  • add test with wrapped lines
  • disable println in lib code with render_debug switch
  • intermediate version with debug prints
  • circular buffer allows absolute indexing
  • test cases for standard widget display and scroll
Commits
  • b935691 bump version and update CHANGELOG
  • f1f3c51 file/module_path/line are now Option, because log::Record defines them as suc...
  • 71d174f fix test errors and README/lib documentation mismatch
  • f577fbe bump version and update CHANGELOG
  • 5c0650c ExtLogRecord stores for file and module_path their static strings, if availab...
  • 051d178 ExtLogRecord: provide accessors for the strings
  • 36de9a5 update DEV_NOTES
  • 754b429 update CHANGELOG
  • 3aa4faa update version for semver check
  • 0ab99a8 lib.rs factoring complete
  • Additional commits viewable in compare view

Updates octocrab from 0.43.0 to 0.44.0

Release notes

Sourced from octocrab's releases.

v0.44.0

Added

  • Implement Serialize for Page (#761)

Fixed

  • [breaking] sha is optional in DiffEntry if file contents are unchanged (#750)
  • insert auth headers for api.github.com (#754)
  • (emails) visibility can be null (#756)
Changelog

Sourced from octocrab's changelog.

0.44.0 - 2025-03-26

Added

  • Implement Serialize for Page (#761)

Fixed

  • [breaking] sha is optional in DiffEntry if file contents are unchanged (#750)
  • insert auth headers for api.github.com (#754)
  • (emails) visibility can be null (#756)
Commits

Updates clap from 4.5.34 to 4.5.35

Release notes

Sourced from clap's releases.

v4.5.35

[4.5.35] - 2025-04-01

Fixes

  • (help) Align positionals and flags when put in the same help_heading
  • (help) Don't leave space for shorts if there are none
Changelog

Sourced from clap's changelog.

[4.5.35] - 2025-04-01

Fixes

  • (help) Align positionals and flags when put in the same help_heading
  • (help) Don't leave space for shorts if there are none
Commits

Updates rust-embed from 8.6.0 to 8.7.0

Changelog

Sourced from rust-embed's changelog.

[8.7.0] - 2025-04-10

  • add deterministic timestamps flag for deterministic builds #259. Thanks to daywalker90
Commits

Updates libduckdb-sys from 1.1.1 to 1.2.1

Release notes

Sourced from libduckdb-sys's releases.

1.2.1

Sorry for tagging all contributors again, I had to delete the release and retry due to the CD CI failing when pushing to crates.io!

What's Changed

New Contributors

Full Changelog: duckdb/duckdb-rs@1.2.0...v1.2.1

1.2.0

What's Changed

Contributors

Unfortunately, I'm not used to working with squash commits and messed up the GitHub commit history slightly, so here some handwritten props for everyone that contributed to this release!

Full Changelog: duckdb/duckdb-rs@v1.1.1...1.2.0

Commits

Updates openssl-sys from 0.9.106 to 0.9.107

Release notes

Sourced from openssl-sys's releases.

openssl-sys-v0.9.107

What's Changed

New Contributors

Full Changelog: sfackler/rust-openssl@openssl-sys-v0.9.106...openssl-sys-v0.9.107

Commits
  • 87085bd Merge pull request #2390 from alex/uaf-fix
  • d1a12e2 Fixed two UAFs and bumped versions for release
  • 7c7b2e6 Merge pull request #2389 from skmcgrail/aws-lc-follow-up
  • 34a477b Use --experimental with bindgen-cli with aws-lc build
  • d4bf071 Merge pull request #2386 from skmcgrail/aws-lc-follow-up
  • a86bf67 Remove comment
  • 705dbfb Fix test
  • e0df413 Skip final call for LibreSSL 4.1.0 for CCM mode
  • 2f1164b Enable additional capabilities for AWS-LC
  • dde9ffb Merge pull request #1805 from skmcgrail/aws-lc-support-final
  • Additional commits viewable in compare view

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 Apr 10, 2025
@dependabot dependabot bot force-pushed the dependabot/cargo/minor-82fb24e23e branch from efee784 to 59db7a9 Compare April 11, 2025 17:14
Bumps the minor group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [crossterm](https://github.com/crossterm-rs/crossterm) | `0.28.1` | `0.29.0` |
| [tokio](https://github.com/tokio-rs/tokio) | `1.44.1` | `1.44.2` |
| [tracing-opentelemetry](https://github.com/tokio-rs/tracing-opentelemetry) | `0.29.0` | `0.30.0` |
| [opentelemetry_sdk](https://github.com/open-telemetry/opentelemetry-rust) | `0.28.0` | `0.29.0` |
| [opentelemetry](https://github.com/open-telemetry/opentelemetry-rust) | `0.28.0` | `0.29.1` |
| [opentelemetry-otlp](https://github.com/open-telemetry/opentelemetry-rust) | `0.28.0` | `0.29.0` |
| [tui-logger](https://github.com/gin66/tui-logger) | `0.14.5` | `0.17.0` |
| [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.43.0` | `0.44.0` |
| [clap](https://github.com/clap-rs/clap) | `4.5.34` | `4.5.35` |
| [rust-embed](https://github.com/pyros2097/rust-embed) | `8.6.0` | `8.7.0` |
| [libduckdb-sys](https://github.com/duckdb/duckdb-rs) | `1.1.1` | `1.2.1` |
| [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.106` | `0.9.107` |



Updates `crossterm` from 0.28.1 to 0.29.0
- [Release notes](https://github.com/crossterm-rs/crossterm/releases)
- [Changelog](https://github.com/crossterm-rs/crossterm/blob/master/CHANGELOG.md)
- [Commits](https://github.com/crossterm-rs/crossterm/commits/0.29)

Updates `tokio` from 1.44.1 to 1.44.2
- [Release notes](https://github.com/tokio-rs/tokio/releases)
- [Commits](tokio-rs/tokio@tokio-1.44.1...tokio-1.44.2)

Updates `tracing-opentelemetry` from 0.29.0 to 0.30.0
- [Release notes](https://github.com/tokio-rs/tracing-opentelemetry/releases)
- [Changelog](https://github.com/tokio-rs/tracing-opentelemetry/blob/v0.1.x/CHANGELOG.md)
- [Commits](tokio-rs/tracing-opentelemetry@v0.29.0...v0.30.0)

Updates `opentelemetry_sdk` from 0.28.0 to 0.29.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Commits](open-telemetry/opentelemetry-rust@opentelemetry_sdk-0.28.0...opentelemetry_sdk-0.29.0)

Updates `opentelemetry` from 0.28.0 to 0.29.1
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Commits](open-telemetry/opentelemetry-rust@opentelemetry-0.28.0...opentelemetry-0.29.1)

Updates `opentelemetry-otlp` from 0.28.0 to 0.29.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases)
- [Commits](open-telemetry/opentelemetry-rust@opentelemetry-otlp-0.28.0...opentelemetry-otlp-0.29.0)

Updates `tui-logger` from 0.14.5 to 0.17.0
- [Changelog](https://github.com/gin66/tui-logger/blob/master/CHANGELOG.md)
- [Commits](gin66/tui-logger@v0.14.5...v0.17.0)

Updates `octocrab` from 0.43.0 to 0.44.0
- [Release notes](https://github.com/XAMPPRocky/octocrab/releases)
- [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md)
- [Commits](XAMPPRocky/octocrab@v0.43.0...v0.44.0)

Updates `clap` from 4.5.34 to 4.5.35
- [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.34...clap_complete-v4.5.35)

Updates `rust-embed` from 8.6.0 to 8.7.0
- [Changelog](https://github.com/pyrossh/rust-embed/blob/master/changelog.md)
- [Commits](https://github.com/pyros2097/rust-embed/commits)

Updates `libduckdb-sys` from 1.1.1 to 1.2.1
- [Release notes](https://github.com/duckdb/duckdb-rs/releases)
- [Commits](duckdb/duckdb-rs@v1.1.1...v1.2.1)

Updates `openssl-sys` from 0.9.106 to 0.9.107
- [Release notes](https://github.com/sfackler/rust-openssl/releases)
- [Commits](sfackler/rust-openssl@openssl-sys-v0.9.106...openssl-sys-v0.9.107)

---
updated-dependencies:
- dependency-name: crossterm
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: tokio
  dependency-version: 1.44.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: tracing-opentelemetry
  dependency-version: 0.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: opentelemetry_sdk
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: opentelemetry
  dependency-version: 0.29.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: opentelemetry-otlp
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: tui-logger
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: octocrab
  dependency-version: 0.44.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: clap
  dependency-version: 4.5.35
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
- dependency-name: rust-embed
  dependency-version: 8.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: libduckdb-sys
  dependency-version: 1.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
- dependency-name: openssl-sys
  dependency-version: 0.9.107
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/minor-82fb24e23e branch from 59db7a9 to f134848 Compare April 11, 2025 21:42
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.

0 participants