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

fix(deps): update all non-major dependencies #52

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 19, 2024

This PR contains the following updates:

Package Type Update Change
cocogitto/cocogitto-action action minor v3.8 -> v3.9
itertools dependencies minor 0.13 -> 0.14
lalrpop build-dependencies minor 0.20.0 -> 0.22.0
lalrpop-util dependencies minor 0.20.0 -> 0.22.0
logos (source) dependencies minor 0.12 -> 0.15
rowan dependencies minor 0.15 -> 0.16
rust minor 1.80.0 -> 1.84.0
smol_str dependencies minor 0.2 -> 0.3

Release Notes

cocogitto/cocogitto-action (cocogitto/cocogitto-action)

v3.9

Compare Source

What's Changed

Full Changelog: cocogitto/cocogitto-action@v3.8...v3.9

rust-itertools/itertools (itertools)

v0.14.0

Compare Source

Breaking
  • Increased MSRV to 1.63.0 (#​960)
  • Removed generic parameter from cons_tuples (#​988)
Added
  • Added array_combinations (#​991)
  • Added k_smallest_relaxed and variants (#​925)
  • Added next_array and collect_array (#​560)
  • Implemented DoubleEndedIterator for FilterOk (#​948)
  • Implemented DoubleEndedIterator for FilterMapOk (#​950)
Changed
  • Allow Q: ?Sized in Itertools::contains (#​971)
  • Improved hygiene of chain! (#​943)
  • Improved into_group_map_by documentation (#​1000)
  • Improved tree_reduce documentation (#​955)
  • Improved discoverability of merge_join_by (#​966)
  • Improved discoverability of take_while_inclusive (#​972)
  • Improved documentation of find_or_last and find_or_first (#​984)
  • Prevented exponentially large type sizes in tuple_combinations (#​945)
  • Added track_caller attr for asser_equal (#​976)
Notable Internal Changes
  • Fixed clippy lints (#​956, #​987, #​1008)
  • Addressed warnings within doctests (#​964)
  • CI: Run most tests with miri (#​961)
  • CI: Speed up "cargo-semver-checks" action (#​938)
  • Changed an instance of default_features in Cargo.toml to default-features (#​985)
lalrpop/lalrpop (lalrpop)

v0.22.0

Compare Source

Breaking changes
  • The lexer feature no longer implies the std feature. Now lexer is
    usable in no_std environments. In no_std, ParseError only implements the
    Error trait in rust 1.81 or later (since core::error was stablized in 1.81).
Features
  • Overhaul cfg attributes. You can now include or omit grammar rules and
    alternatives based on cargo features with not(), any() and all() support
Bugfixes
  • Improvements to error message reporting to improve clarity and suppress extra noise
  • lalrpop_mod!() now handles imports correctly
  • Reenable some warnings on user code for custom lexers

v0.21.0

Compare Source

Since the last release, a fair number of the commits have been focused on cleaning
up and improving LALRPOP's documentation. Shout out to Yudai Takada, George
White, and Dinu Blanovschi.

Features
  • LALRPOP now throws an error in more cases where it would previously just write
    out an error message and exit.
  • lalrpop::process_src is now the recommended function to use in build.rs
    files. Previously the documentation incorrectly suggested that
    lalrpop::process_root looked in ./src instead of .
Bugfixes
  • A long-standing bug where LALRPOP would throw a "no entry found for key"
    exception when trying to handle certain grammars has been resolved.
  • LALRPOP will stop expanding macros infinitely during build time via a new
    macro_expansion_limit.
Compatibility note

Adding a limit to the number of times that LALRPOP will attempt to expand a
macro is technically a breaking change. However, the default limit of 200
should be more than enough for the grammars we are currently aware of (which
almost always need a limit of less than 5). This limit is customizable via Configuration::set_macro_expansion_limit.

If you have a grammar that uses a significant amount of macro expansion steps,
we would be very interested in a PR that adds it to the test suite.

v0.20.2

Compare Source

Special thanks to our newest maintainers, Daniel Burgener and Patrick LaFontaine for helping to coordinate this release.

Features
  • Lalrpop no longer depends on the is-terminal crate (thanks to Kmeakin!)
  • Better performance with the default lexer using the underlying regex-automata crate (thanks to QuarticCat!)
  • Allow the catch-all _ case for token matching can now be set to a higher precedence in match (thanks to fpoli!)
  • Fewer clippy lints triggered in generated code
  • Lalrpop now traverses symlinks to find .lalrpop files(thanks mbid!)
  • Lalrpop now supports block comments including nestings(thanks seanbright!)
Bugfixes
  • Lalrpop now uses the ascii-aware space regex when the unicode feature is not enabled (thanks to QuarticCat!)
  • Dangling symlinks in crate no longer cause build failure (thanks to legeana
    for the report!)
  • Unicode is now set as a default feature in lalrpop-util to align with
    lalrpop's defaults
Compatibility note
  • MSRV increased to 1.70.
  • process_root_unconditionally now correctly lints as having been deprecated.
  • Internal types which lead with a __ and should not be relied upon are no longer publicly exposed (thanks to arnaudgolfouse!)
  • Lalrpop files containing a space in their name now return an error.

v0.20.1

Compare Source

Yanked

maciejhirsz/logos (logos)

v0.14.4: - Republish v0.14.2

Compare Source

Do to a mistake caused when versioning v0.14.3 (which was yanked on crates.io and re-published as v0.15), v0.14.2 is re-published under v0.14.4, to avoid crates selecting a version of Logos that might break their CI, due to an upgrade of the MRSV.

See https://github.com/maciejhirsz/logos/issues/452.

v0.14.3: - YANKED - 2024 edition, improved callback, fixes and better docs!

Compare Source

[!IMPORTANT]
This version was yanked as it bumped the MSRV, and we should have changed the minor (not the patch) part of the version to reflect this.

This is a small release, but it contains two important fixes:

  • Fix for big-endian platforms in #​431
  • Support for Rust 2024 edition in #​435

As well as a nice new feature for callback to support returning Result<Skip>!

Moreover, the documentation has received very nice additions.

Many thanks to all the contributors!

What's Changed

New Contributors

Full Changelog: maciejhirsz/logos@v0.14.2...v0.14.3

v0.14.2: - Optional forbid_unsafe feature, fuzzing, book, and more!

Compare Source

What's Changed

New Contributors

Full Changelog: maciejhirsz/logos@v0.14.1...v0.14.2

v0.14.1: 0.14.1 - Debug feature and fixes

What's Changed

New Contributors

Full Changelog: maciejhirsz/logos@v0.14...v0.14.1

rust-analyzer/rowan (rowan)

v0.16.1

Compare Source

v0.16.0

Compare Source

rust-lang/rust (rust)

v1.84.0

Compare Source

==========================

Language

Compiler

Libraries

Stabilized APIs

These APIs are now stable in const contexts

Cargo

Rustdoc

Compatibility Notes

v1.83.0

Compare Source

==========================

Language

Compiler

Refer to Rust's [platform support page][platform-support-doc]
for more information on Rust's tiered platform support.

Libraries

Stabilized APIs

These APIs are now stable in const contexts:

Cargo

Rustdoc

Compatibility Notes

v1.82.0

Compare Source

==========================

Language

Compiler

Libraries

Stabilized APIs


Configuration

📅 Schedule: Branch creation - "* 0-3 * * 1" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from alixinne as a code owner August 19, 2024 22:19
@renovate renovate bot enabled auto-merge (rebase) August 19, 2024 22:19
Copy link
Contributor Author

renovate bot commented Aug 19, 2024

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 5ed377c to a7f7cab Compare August 19, 2024 22:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a7f7cab to def604b Compare August 26, 2024 22:31
@renovate renovate bot changed the title fix(deps): update rust crate logos to 0.14 chore(deps): update all non-major dependencies Aug 26, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 3c1a59b to 81f55c6 Compare September 5, 2024 20:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 197ca6c to 1c502f4 Compare October 2, 2024 16:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1c502f4 to c9f2bc7 Compare October 17, 2024 17:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c9f2bc7 to b07b77b Compare November 4, 2024 14:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 67d8727 to 4e16d55 Compare November 11, 2024 22:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from b6f8025 to 137df24 Compare November 28, 2024 17:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 137df24 to 75cfc3b Compare December 7, 2024 13:20
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Dec 10, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 75cfc3b to dd622f5 Compare December 31, 2024 12:53
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from dd622f5 to f59bb0c Compare January 9, 2025 18:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants