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 rust-dependencies group across 1 directory with 6 updates #262

Merged
merged 6 commits into from
Feb 27, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 27, 2025

Bumps the rust-dependencies group with 6 updates in the / directory:

Package From To
bullet_stream 0.3.0 0.7.0
fs-err 3.0.0 3.1.0
libcnb 0.26.1 0.27.0
libherokubuildpack 0.26.1 0.27.0
winnow 0.6.22 0.7.3
libcnb-test 0.26.1 0.27.0

Updates bullet_stream from 0.3.0 to 0.7.0

Changelog

Sourced from bullet_stream's changelog.

CHANGELOG

Unreleased

v0.6.1 - 2024/02/11

v0.6.0 - 2025/02/05

  • Added: Print<T>::error() now returns the original writer W, this allows for building error messages (Vec<u8>) with debug output above it using the stateful API. See the tests for an example (heroku-buildpacks/bullet_stream#28)

v0.5.0 - 2025/01/31

  • A fun_run feature to provide optional interfaces when the fun_run crate is being used. PR: (heroku-buildpacks/bullet_stream#25)
    • Added: global::print::sub_stream_cmd and global::print::sub_time_cmd
    • Added: Print<SubBullet<W>>::stream_cmd() and Print<SubBullet<W>>::time_cmd()
  • Struct _GlobalWriter is deprecated, use GlobalWriter instead (heroku-buildpacks/bullet_stream#26)

v0.4.0 - 2025/01/21

Commits

Updates fs-err from 3.0.0 to 3.1.0

Changelog

Sourced from fs-err's changelog.

3.1.0

  • Added new wrappers for create_new and options functions on File (#69)
Commits

Updates libcnb from 0.26.1 to 0.27.0

Changelog

Sourced from libcnb's changelog.

[0.27.0] - 2025-02-27

Changed

  • Raised Minimum Supported Rust Version (MSRV) to 1.85. (#913)
  • Updated to Rust 2024 edition. (#913)
  • libcnb:
    • Implemented custom OTLP File Exporter instead of opentelemetry-stdout and updated opentelemetry libraries to 0.28. (#909)
Commits
  • 0938dc5 Prepare release v0.27.0 (#914)
  • 254cbae Export TraceData wrapped ResourceSpans (#916)
  • 108faf1 Update workspace resolver version to 3 (#915)
  • 59d08c9 Update to Rust 2024 edition (#913)
  • 4787510 Update petgraph requirement from 0.6.5 to 0.7.1 (#903)
  • 012e6b6 Custom OTLP File Exporter + opentelemetry updates (#909)
  • 693a064 Bump softprops/action-gh-release from 2.1.0 to 2.2.1 (#901)
  • d6f57e5 Bump buildpacks/github-actions from 5.8.3 to 5.8.8 (#905)
  • c1cb55f Bump peter-evans/create-pull-request from 7.0.5 to 7.0.6 (#895)
  • 215136c Bump Swatinem/rust-cache from 2.7.5 to 2.7.7 (#897)
  • Additional commits viewable in compare view

Updates libherokubuildpack from 0.26.1 to 0.27.0

Release notes

Sourced from libherokubuildpack's releases.

v0.27.0

Changed

  • Raised Minimum Supported Rust Version (MSRV) to 1.85. (#913)
  • Updated to Rust 2024 edition. (#913)
  • libcnb:
    • Implemented custom OTLP File Exporter instead of opentelemetry-stdout and updated opentelemetry libraries to 0.28. (#909)
Changelog

Sourced from libherokubuildpack's changelog.

[0.27.0] - 2025-02-27

Changed

  • Raised Minimum Supported Rust Version (MSRV) to 1.85. (#913)
  • Updated to Rust 2024 edition. (#913)
  • libcnb:
    • Implemented custom OTLP File Exporter instead of opentelemetry-stdout and updated opentelemetry libraries to 0.28. (#909)
Commits
  • 0938dc5 Prepare release v0.27.0 (#914)
  • 254cbae Export TraceData wrapped ResourceSpans (#916)
  • 108faf1 Update workspace resolver version to 3 (#915)
  • 59d08c9 Update to Rust 2024 edition (#913)
  • 4787510 Update petgraph requirement from 0.6.5 to 0.7.1 (#903)
  • 012e6b6 Custom OTLP File Exporter + opentelemetry updates (#909)
  • 693a064 Bump softprops/action-gh-release from 2.1.0 to 2.2.1 (#901)
  • d6f57e5 Bump buildpacks/github-actions from 5.8.3 to 5.8.8 (#905)
  • c1cb55f Bump peter-evans/create-pull-request from 7.0.5 to 7.0.6 (#895)
  • 215136c Bump Swatinem/rust-cache from 2.7.5 to 2.7.7 (#897)
  • Additional commits viewable in compare view

Updates winnow from 0.6.22 to 0.7.3

Changelog

Sourced from winnow's changelog.

[0.7.3] - 2025-02-19

Features

  • Add ParseError::char_span

[0.7.2] - 2025-02-10

Fixes

  • Make Range Copyable

[0.7.1] - 2025-02-03

Fixes

  • Don't panic when calling .next(), .next(), .finish() on iterator

[0.7.0] - 2025-01-30

Migration Guide

  1. Upgrade to the latest 0.6 release
  2. Resolve all deprecations
  3. Replace impl Parser<_, _, _> with impl ModalParser<_, _, _>
  4. Upgrade to 0.7.0
  5. Resolve any compiler errors
  • For custom errors, remove switch from from_error_kind to from_input and remove other kind parameters
  • For seq!(<tuple>), you may need to add mut to shared parsers
  • For Stream::peek* calls, update for lack of Stream being returned
  • Where ModalParser couldn't be used, change Parser<I, O, E> to Parser<I, O, ErrMode<E>>
  1. Resolve all deprecations

If you do not use cut_err or Partial, you can further clean up the code and improve performance by removing the use of ErrMode

  • Replace ModalResult<O, E> with winnow::Result<O> (if using default error type) or just Result<O, E>
  • Replace impl ModalParser with impl Parser
  • Remove uses of ErrMode

Compatibility

  • escaped and take_escaped now assert, rather than stop, on empty normal output
  • Some parsers used in seq(<tuple>) must now be mut
  • Stream::peek_token, Stream::peek_slice, Stream::peek_finish no longer return a clone of Stream
  • trait Locations functions have changed to improve parsing of lexed tokens
  • ParserError::append and FromExternalError::from_external_errors kind parameter has been removed
  • ParserError, AsChar, ContainsToken, Stream were added to the prelude
  • Some trait bounds changed
  • Deprecated functionality removed
  • Deprecated escaped_transform in favor of the new name escaped

... (truncated)

Commits
  • d6e7bbb chore: Release
  • 3bc0877 docs: Update changelog
  • 2942161 Merge pull request #747 from epage/span
  • 882f82f feat(error): Provide ParseError::char_span
  • 720fae1 Merge pull request #746 from epage/adapt
  • 4f43ff5 docs(ref): Link ContextError to tutorial
  • 2e94c45 docs(ascii): Clarify till_line_ending's behavior
  • 382f25a Merge pull request #743 from decathorpe/main
  • 1c46d3b tests: update snapbox fixtures for should-panic-in-debug tests
  • 78e01a7 chore: Release
  • Additional commits viewable in compare view

Updates libcnb-test from 0.26.1 to 0.27.0

Changelog

Sourced from libcnb-test's changelog.

[0.27.0] - 2025-02-27

Changed

  • Raised Minimum Supported Rust Version (MSRV) to 1.85. (#913)
  • Updated to Rust 2024 edition. (#913)
  • libcnb:
    • Implemented custom OTLP File Exporter instead of opentelemetry-stdout and updated opentelemetry libraries to 0.28. (#909)
Commits
  • 0938dc5 Prepare release v0.27.0 (#914)
  • 254cbae Export TraceData wrapped ResourceSpans (#916)
  • 108faf1 Update workspace resolver version to 3 (#915)
  • 59d08c9 Update to Rust 2024 edition (#913)
  • 4787510 Update petgraph requirement from 0.6.5 to 0.7.1 (#903)
  • 012e6b6 Custom OTLP File Exporter + opentelemetry updates (#909)
  • 693a064 Bump softprops/action-gh-release from 2.1.0 to 2.2.1 (#901)
  • d6f57e5 Bump buildpacks/github-actions from 5.8.3 to 5.8.8 (#905)
  • c1cb55f Bump peter-evans/create-pull-request from 7.0.5 to 7.0.6 (#895)
  • 215136c Bump Swatinem/rust-cache from 2.7.5 to 2.7.7 (#897)
  • 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

Bumps the rust-dependencies group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bullet_stream](https://github.com/schneems/bullet_stream) | `0.3.0` | `0.7.0` |
| [fs-err](https://github.com/andrewhickman/fs-err) | `3.0.0` | `3.1.0` |
| [libcnb](https://github.com/heroku/libcnb.rs) | `0.26.1` | `0.27.0` |
| [libherokubuildpack](https://github.com/heroku/libcnb.rs) | `0.26.1` | `0.27.0` |
| [winnow](https://github.com/winnow-rs/winnow) | `0.6.22` | `0.7.3` |
| [libcnb-test](https://github.com/heroku/libcnb.rs) | `0.26.1` | `0.27.0` |



Updates `bullet_stream` from 0.3.0 to 0.7.0
- [Changelog](https://github.com/heroku-buildpacks/bullet_stream/blob/main/CHANGELOG.md)
- [Commits](https://github.com/schneems/bullet_stream/commits/v0.7.0)

Updates `fs-err` from 3.0.0 to 3.1.0
- [Changelog](https://github.com/andrewhickman/fs-err/blob/main/CHANGELOG.md)
- [Commits](andrewhickman/fs-err@3.0.0...3.1.0)

Updates `libcnb` from 0.26.1 to 0.27.0
- [Release notes](https://github.com/heroku/libcnb.rs/releases)
- [Changelog](https://github.com/heroku/libcnb.rs/blob/main/CHANGELOG.md)
- [Commits](heroku/libcnb.rs@v0.26.1...v0.27.0)

Updates `libherokubuildpack` from 0.26.1 to 0.27.0
- [Release notes](https://github.com/heroku/libcnb.rs/releases)
- [Changelog](https://github.com/heroku/libcnb.rs/blob/main/CHANGELOG.md)
- [Commits](heroku/libcnb.rs@v0.26.1...v0.27.0)

Updates `winnow` from 0.6.22 to 0.7.3
- [Changelog](https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md)
- [Commits](winnow-rs/winnow@v0.6.22...v0.7.3)

Updates `libcnb-test` from 0.26.1 to 0.27.0
- [Release notes](https://github.com/heroku/libcnb.rs/releases)
- [Changelog](https://github.com/heroku/libcnb.rs/blob/main/CHANGELOG.md)
- [Commits](heroku/libcnb.rs@v0.26.1...v0.27.0)

---
updated-dependencies:
- dependency-name: bullet_stream
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: fs-err
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: libcnb
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: libherokubuildpack
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: winnow
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
- dependency-name: libcnb-test
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner February 27, 2025 19:39
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code skip changelog labels Feb 27, 2025
@edmorley
Copy link
Member

Hmm the new winnow 0.7 release contains a bunch of breaking changes that result in compiler errors. Whilst I've been able to work through them using the documented migration process, I'm already feeling like we've overcomplicated this buildpack a bit with the introduction of a parser (given that the Procfile format is a simple single-line per item format that we could parse using an iterator) :-(

https://github.com/winnow-rs/winnow/blob/main/CHANGELOG.md#070---2025-01-30

@edmorley edmorley enabled auto-merge (squash) February 27, 2025 20:11
@edmorley edmorley self-assigned this Feb 27, 2025
@edmorley edmorley merged commit 7ca0eef into main Feb 27, 2025
5 checks passed
@edmorley edmorley deleted the dependabot/cargo/rust-dependencies-8507e4cbe0 branch February 27, 2025 20:16
heroku-linguist bot added a commit that referenced this pull request Feb 27, 2025
## heroku/procfile

### Changed

- Updated libcnb to 0.27.0, which includes opentelemetry 0.28 and the new custom OTLP File Exporter. ([#262](#262))
@heroku-linguist heroku-linguist bot mentioned this pull request Feb 27, 2025
heroku-linguist bot added a commit that referenced this pull request Feb 27, 2025
## heroku/procfile

### Changed

- Updated libcnb to 0.27.0, which includes opentelemetry 0.28 and the new custom OTLP File Exporter. ([#262](#262))

Co-authored-by: heroku-linguist[bot] <136119646+heroku-linguist[bot]@users.noreply.github.com>
heroku-linguist bot added a commit to heroku/cnb-builder-images that referenced this pull request Feb 27, 2025
## heroku/procfile

### Changed

- Updated libcnb to 0.27.0, which includes opentelemetry 0.28 and the new custom OTLP File Exporter. ([#262](heroku/buildpacks-procfile#262))
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