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 cargo-minor group across 1 directory with 5 updates #16871

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 24, 2024

Bumps the cargo-minor group with 5 updates in the / directory:

Package From To
bytemuck 1.16.0 1.16.1
quick-xml 0.31.0 0.34.0
syn 2.0.66 2.0.68
proc-macro2 1.0.85 1.0.86
libloading 0.8.3 0.8.4

Updates bytemuck from 1.16.0 to 1.16.1

Changelog

Sourced from bytemuck's changelog.

1.16.1

  • NOT SEMVER SUPPORTED: Adds the nightly_float Cargo feature. This activates the f16 and f128 nightly features, and then provides Zeroable and Pod impls for those types.
Commits

Updates quick-xml from 0.31.0 to 0.34.0

Release notes

Sourced from quick-xml's releases.

v0.34.0 - allow to read 4GB+ files on 32-bit targets

What's Changed

Bug Fixes

  • #751: Fix internal overflow when read 4GB+ files on 32-bit targets using Reader<impl BufRead> readers.

Misc Changes

  • #760: Attribute::decode_and_unescape_value and Attribute::decode_and_unescape_value_with now accepts Decoder instead of Reader. Use Reader::decoder() to get it.
  • #760: Writer::write_event now consumes event. Use Event::borrow() if you want to keep ownership.
  • #751: Type of Reader::error_position() and Reader::buffer_position() changed from usize to u64.
  • #751: Type alias Span changed from Range<usize> to Range<u64>.

#751: tafia/quick-xml#751 #760: tafia/quick-xml#760

Full Changelog: tafia/quick-xml@v0.33.0...v0.34.0

v0.33.0 - Make compile time small again

What's Changed

New Features

  • #758: Implemented From<QName> for BytesStart and BytesEnd.

Bug Fixes

  • #755: Fix incorrect missing of trimming all-space text events when trim_text_start = false and trim_text_end = true.

Misc Changes

  • #650: Change the type of Event::PI to a new dedicated BytesPI type.
  • #759: Make const as much functions as possible:
    • resolve_html5_entity()
    • resolve_predefined_entity()
    • resolve_xml_entity()
    • Attr::key()
    • Attr::value()
    • Attributes::html()
    • Attributes::new()
    • BytesDecl::from_start()
    • Decoder::encoding()
    • Deserializer::get_ref()
    • IoReader::get_ref()
    • LocalName::into_inner()
    • Namespace::into_inner()
    • NsReader::config()
    • NsReader::prefixes()

... (truncated)

Changelog

Sourced from quick-xml's changelog.

0.34.0 -- 2024-06-25

Bug Fixes

  • #751: Fix internal overflow when read 4GB+ files on 32-bit targets using Reader<impl BufRead> readers.

Misc Changes

  • #760: Attribute::decode_and_unescape_value and Attribute::decode_and_unescape_value_with now accepts Decoder instead of Reader. Use Reader::decoder() to get it.
  • #760: Writer::write_event now consumes event. Use Event::borrow() if you want to keep ownership.
  • #751: Type of Reader::error_position() and Reader::buffer_position() changed from usize to u64.
  • #751: Type alias Span changed from Range<usize> to Range<u64>.

#751: tafia/quick-xml#751 #760: tafia/quick-xml#760

0.33.0 -- 2024-06-21

New Features

  • #758: Implemented From<QName> for BytesStart and BytesEnd.

Bug Fixes

  • #755: Fix incorrect missing of trimming all-space text events when trim_text_start = false and trim_text_end = true.

Misc Changes

  • #650: Change the type of Event::PI to a new dedicated BytesPI type.
  • #759: Make const as much functions as possible:
    • resolve_html5_entity()
    • resolve_predefined_entity()
    • resolve_xml_entity()
    • Attr::key()
    • Attr::value()
    • Attributes::html()
    • Attributes::new()
    • BytesDecl::from_start()
    • Decoder::encoding()
    • Deserializer::get_ref()
    • IoReader::get_ref()
    • LocalName::into_inner()
    • Namespace::into_inner()
    • NsReader::config()
    • NsReader::prefixes()
    • Prefix::into_inner()
    • QName::into_inner()

... (truncated)

Commits
  • 7f86e57 Release 0.34.0
  • d71978e Use u64 offsets to be able to read 4GB+ files on 32-bit targets
  • d2c75ab Run some tests on 32-bit target
  • 7f92129 Add tests to check that reading can overflow internal counters
  • 4674244 Merge pull request #760 from Mingun/in-mind-of-write
  • 55f7aa1 Consume event when write. Use Event::borrow() if you want to keep ownership
  • 2553b62 Accept Decoder instead of Reader when decoding attributes.
  • 31ca532 Remove unused import in doctest
  • 649f3d8 Merge pull request #767 from Mingun/move-to-integration
  • a24ed89 Move writer integration tests for indentation to tests/writer-indentation.rs
  • Additional commits viewable in compare view

Updates syn from 2.0.66 to 2.0.68

Release notes

Sourced from syn's releases.

2.0.68

  • Improve panic location when parse_quote! parses invalid syntax (#1690, thanks @​stepancheg)
  • More efficient peek implementation for Group and Lifetime (#1687)

2.0.67

  • Produce more accurate error message locations for errors located at the end of a nested group (#1679, #1680)
  • Support peeking LitCStr in ParseStream::peek (#1682)
Commits
  • ecb0429 Release 2.0.68
  • 37edbd2 Merge pull request #1690 from stepancheg/track-called
  • 4338772 track-caller in parse_quote_spanned
  • 537b0c5 Update test suite to nightly-2024-06-22
  • b088d5c Merge pull request #1688 from dtolnay/peeklit
  • 9b4e478 Relocate Lit peek impls into lit module
  • 38f2ddb Merge pull request #1687 from dtolnay/fastpeek
  • ef20bfd Optimize the peek impl of Group and Lifetime
  • 4b6c96a Merge pull request #1686 from dtolnay/isempty
  • 87d5792 Reword explanation of ParseBuffer::is_empty
  • Additional commits viewable in compare view

Updates proc-macro2 from 1.0.85 to 1.0.86

Release notes

Sourced from proc-macro2's releases.

1.0.86

  • Documentation improvements
Commits

Updates libloading from 0.8.3 to 0.8.4

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
quick-xml [>= 0.32.a, < 0.33]
quick-xml [>= 0.33.a, < 0.34]

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

…ates

Bumps the cargo-minor group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [bytemuck](https://github.com/Lokathor/bytemuck) | `1.16.0` | `1.16.1` |
| [quick-xml](https://github.com/tafia/quick-xml) | `0.31.0` | `0.34.0` |
| [syn](https://github.com/dtolnay/syn) | `2.0.66` | `2.0.68` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.85` | `1.0.86` |
| [libloading](https://github.com/nagisa/rust_libloading) | `0.8.3` | `0.8.4` |



Updates `bytemuck` from 1.16.0 to 1.16.1
- [Changelog](https://github.com/Lokathor/bytemuck/blob/main/changelog.md)
- [Commits](Lokathor/bytemuck@v1.16.0...v1.16.1)

Updates `quick-xml` from 0.31.0 to 0.34.0
- [Release notes](https://github.com/tafia/quick-xml/releases)
- [Changelog](https://github.com/tafia/quick-xml/blob/master/Changelog.md)
- [Commits](tafia/quick-xml@v0.31.0...v0.34.0)

Updates `syn` from 2.0.66 to 2.0.68
- [Release notes](https://github.com/dtolnay/syn/releases)
- [Commits](dtolnay/syn@2.0.66...2.0.68)

Updates `proc-macro2` from 1.0.85 to 1.0.86
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.85...1.0.86)

Updates `libloading` from 0.8.3 to 0.8.4
- [Commits](nagisa/rust_libloading@0.8.3...0.8.4)

---
updated-dependencies:
- dependency-name: bytemuck
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: quick-xml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-minor
- dependency-name: syn
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
- dependency-name: libloading
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added A-deps Area: Dependencies rust Pull requests that update Rust code labels Jun 24, 2024
@danielhjacobs
Copy link
Contributor

@dependabot ignore quick-xml minor version

Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 24, 2024

OK, I won't notify you about version 0.34.x of quick-xml again, unless you unignore it.

Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 24, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jun 24, 2024
@dependabot dependabot bot deleted the dependabot/cargo/cargo-minor-bf0869a8b2 branch June 24, 2024 20:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-deps Area: Dependencies rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant