Skip to content

Bump the "dependencies" group with 2 updates across multiple ecosystems - #422

Merged
owenlamont merged 2 commits into
mainfrom
dependabot/dependencies-f39bfbcc4b
Sep 6, 2026
Merged

Bump the "dependencies" group with 2 updates across multiple ecosystems#422
owenlamont merged 2 commits into
mainfrom
dependabot/dependencies-f39bfbcc4b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 4, 2026

Copy link
Copy Markdown
Contributor

Bumps the dependencies group with 2 updates: taiki-e/install-action and prefix-dev/setup-pixi.

Updates taiki-e/install-action from 2.86.5 to 2.87.0

Release notes

Sourced from taiki-e/install-action's releases.

2.87.0

  • Support kache. (#1980, thanks @​ChrisJr404)

  • Update vacuum@latest to 0.30.1.

  • Update uv@latest to 0.12.6.

  • Update mise@latest to 2026.8.14.

  • Update editorconfig-checker@latest to 3.11.2.

2.86.8

  • Update wasmtime@latest to 48.0.1.

  • Update wasm-tools@latest to 1.258.0.

  • Update oxfmt@latest to 1.80.0.

  • Update mise@latest to 2026.8.12.

  • Update kingfisher@latest to 2.0.0.

  • Update cargo-zigbuild@latest to 0.23.2.

2.86.7

  • Update tombi@latest to 1.4.1.

  • Update rafn@latest to 0.1.5.

  • Update cargo-binstall@latest to 1.22.0.

2.86.6

  • Update dprint@latest to 0.56.1.

  • Update cargo-lambda@latest to 1.9.2.

  • Update biome@latest to 2.5.10.

Changelog

Sourced from taiki-e/install-action's changelog.

Changelog

All notable changes to this project will be documented in this file.

This project adheres to Semantic Versioning.

[Unreleased]

[2.87.4] - 2026-09-02

  • Update uv@latest to 0.12.8.

  • Update protoc@latest to 3.36.1.

  • Update coreutils@latest to 0.11.0.

[2.87.3] - 2026-09-01

  • Update zizmor@latest to 1.30.0.

  • Update ubi@latest to 0.12.0.

  • Update protoc-gen-connect-openapi@latest to 0.25.8.

  • Update mise@latest to 2026.8.16.

  • Update kingfisher@latest to 2.1.0.

  • Update dprint@latest to 0.57.0.

[2.87.2] - 2026-08-30

  • Update typos@latest to 1.50.0.

  • Update tombi@latest to 1.5.0.

  • Update shfmt@latest to 3.14.0.

[2.87.1] - 2026-08-29

  • Update uv@latest to 0.12.7.

  • Update typos@latest to 1.49.1.

  • Update syft@latest to 1.51.1.

... (truncated)

Commits

Updates prefix-dev/setup-pixi from 0.10.1 to 0.10.2

Release notes

Sourced from prefix-dev/setup-pixi's releases.

v0.10.2

What's Changed

✨ New features

Full Changelog: prefix-dev/setup-pixi@v0.10.1...v0.10.2

Commits

Bumps the dependencies group with 1 update: quick-xml.

Updates quick-xml from 0.41.0 to 0.42.0

Release notes

Sourced from quick-xml's releases.

v0.42.0 - String Ergonomics

What's Changed

0.42.0 -- 2026-08-22

This is a large release. The primary change is an ergonomic improvement across the entire API - quick_xml now makes use of &str and String types where possible instead of &[u8] and Vec<u8>. This requires significant refactoring of downstream code, but should result in a net simplification as well as potential performance improvements, and opens up additional opportunities in future releases.

The MSRV has been raised to 1.86. We now use Rust 2024 Edition.

Breaking Changes

  • #963: Reader now validates that input is valid UTF-8 when constructing events. Non-UTF-8 input passed to Reader::from_reader() without DecodingReader will now produce Error::Encoding instead of silently passing through invalid bytes. Use DecodingReader to transcode non-UTF-8 sources.
  • #963: Name types (QName, LocalName, Prefix, Namespace, PrefixDeclaration) now wrap &str instead of &[u8]. into_inner() returns &str, and AsRef<str> is implemented (AsRef<[u8]> has been removed). ResolveResult::Unknown now contains String instead of Vec<u8>, and NamespaceError variants contain String instead of Vec<u8>.
  • #963: Removed the decoder: Decoder field from event types (BytesStart, BytesText, BytesCData, BytesRef) and Attributes. The decoder() method is no longer available on these types. Decode methods on events now always assume UTF-8 input. Error::missed_end() no longer takes a Decoder parameter.
  • #963: Event types (BytesStart, BytesEnd, BytesText, BytesCData, BytesPI, BytesRef) now store Cow<str> internally instead of Cow<[u8]>. into_inner() on BytesText, BytesCData, BytesPI, and BytesRef now returns Cow<str>. BytesStart::set_name() now takes &str instead of &[u8].
  • #963: All event types and the Event enum now implement Deref<Target = str> instead of Deref<Target = [u8]>. Explicit AsRef<str> impls are provided to avoid ambiguity.
  • #963: Removed decode() methods from BytesText, BytesCData, and BytesRef. Content is already available as &str via Deref. The xml10_content(), xml11_content(), xml_content(), and html_content() methods now return Cow<str> directly instead of Result<Cow<str>, EncodingError>.
  • #963: Attribute::value is now Cow<'a, str> instead of Cow<'a, [u8]>. The From<(&[u8], &[u8])> impl has been removed.
  • #963: BytesDecl::version(), encoding(), and standalone() now return Cow<'_, str> instead of Cow<'_, [u8]>.
  • #963: Removed Reader::decoder() method. Use Reader::encoding() instead (available with the encoding feature). Removed decoder() from the XmlRead serde trait. Removed all methods from Decoder (the struct is kept only for backward compatibility with deprecated Attribute methods).
  • #980: NamespaceError::TooManyDeclarations has been renamed to TooManyBindings, and NamespaceResolver::set_max_declarations_per_element has been renamed to NamespaceResolver::set_max_namespace_bindings, and the semantic behavior has

... (truncated)

Changelog

Sourced from quick-xml's changelog.

0.42.0 -- 2026-08-22

This is a large release. The primary change is an ergonomic improvement across the entire API - quick_xml now makes use of &str and String types where possible instead of &[u8] and Vec<u8>. This requires significant refactoring of downstream code, but should result in a net simplification as well as potential performance improvements, and opens up additional opportunities in future releases.

The MSRV has been raised to 1.86. We now use Rust 2024 Edition.

Breaking Changes

  • #963: Reader now validates that input is valid UTF-8 when constructing events. Non-UTF-8 input passed to Reader::from_reader() without DecodingReader will now produce Error::Encoding instead of silently passing through invalid bytes. Use DecodingReader to transcode non-UTF-8 sources.
  • #963: Name types (QName, LocalName, Prefix, Namespace, PrefixDeclaration) now wrap &str instead of &[u8]. into_inner() returns &str, and AsRef<str> is implemented (AsRef<[u8]> has been removed). ResolveResult::Unknown now contains String instead of Vec<u8>, and NamespaceError variants contain String instead of Vec<u8>.
  • #963: Removed the decoder: Decoder field from event types (BytesStart, BytesText, BytesCData, BytesRef) and Attributes. The decoder() method is no longer available on these types. Decode methods on events now always assume UTF-8 input. Error::missed_end() no longer takes a Decoder parameter.
  • #963: Event types (BytesStart, BytesEnd, BytesText, BytesCData, BytesPI, BytesRef) now store Cow<str> internally instead of Cow<[u8]>. into_inner() on BytesText, BytesCData, BytesPI, and BytesRef now returns Cow<str>. BytesStart::set_name() now takes &str instead of &[u8].
  • #963: All event types and the Event enum now implement Deref<Target = str> instead of Deref<Target = [u8]>. Explicit AsRef<str> impls are provided to avoid ambiguity.
  • #963: Removed decode() methods from BytesText, BytesCData, and BytesRef. Content is already available as &str via Deref. The xml10_content(), xml11_content(), xml_content(), and html_content() methods now return Cow<str> directly instead of Result<Cow<str>, EncodingError>.
  • #963: Attribute::value is now Cow<'a, str> instead of Cow<'a, [u8]>. The From<(&[u8], &[u8])> impl has been removed.
  • #963: BytesDecl::version(), encoding(), and standalone() now return Cow<'_, str> instead of Cow<'_, [u8]>.
  • #963: Removed Reader::decoder() method. Use Reader::encoding() instead (available with the encoding feature). Removed decoder() from the XmlRead serde trait. Removed all methods from Decoder (the struct is kept only for backward compatibility with deprecated Attribute methods).
  • #980: NamespaceError::TooManyDeclarations has been renamed to TooManyBindings, and NamespaceResolver::set_max_declarations_per_element has been renamed to NamespaceResolver::set_max_namespace_bindings, and the semantic behavior has changed slightly. The default maximum has also been reduced from 256 to 128.
  • #1000: DeError::UnexpectedStart renamed to DeError::MixedContent. That error is emitted when you try to deserialize boolean, number or string field from something like <field>text <tag/> another text</field>.

... (truncated)

Commits
  • 36a2c52 Release 0.42.0
  • a4b9fca cargo fmt
  • 22c99f5 Update Rust Edition to 2024
  • 83351fb Add rename = $value to a table in serde example comments
  • f4db767 Clarify documentation about lifetimes of the events and attributes
  • 9f4c66a Fix formatting for correct assertions in read_nodes_serde
  • 6950ef7 Add GHA job to execute examples
  • dbf9e3f Show XML Decl tracking in examples
  • aab9452 Add writing a Decl event to the writer example
  • 1573e05 Avoid trim_text(true) in the in-depth examples
  • 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 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 dependencies group with 2 updates: [taiki-e/install-action](https://github.com/taiki-e/install-action) and [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi).


Updates `taiki-e/install-action` from 2.86.5 to 2.87.0
- [Release notes](https://github.com/taiki-e/install-action/releases)
- [Changelog](https://github.com/taiki-e/install-action/blob/main/CHANGELOG.md)
- [Commits](taiki-e/install-action@ba47c86...37f7c57)

Updates `prefix-dev/setup-pixi` from 0.10.1 to 0.10.2
- [Release notes](https://github.com/prefix-dev/setup-pixi/releases)
- [Commits](prefix-dev/setup-pixi@f00437f...d3f436a)
chore(deps): bump quick-xml in the dependencies group

Bumps the dependencies group with 1 update: [quick-xml](https://github.com/tafia/quick-xml).


Updates `quick-xml` from 0.41.0 to 0.42.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.41.0...v0.42.0)

---
updated-dependencies:
- dependency-name: taiki-e/install-action
  dependency-version: 2.87.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: prefix-dev/setup-pixi
  dependency-version: 0.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: quick-xml
  dependency-version: 0.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Sep 4, 2026
@dependabot
dependabot Bot requested a review from owenlamont as a code owner September 4, 2026 00:14
@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Sep 4, 2026

Copy link
Copy Markdown

Deploying ryl-docs with  Cloudflare Pages  Cloudflare Pages

Latest commit: f25dac3
Status: ✅  Deploy successful!
Preview URL: https://ed69875f.ryl-docs.pages.dev
Branch Preview URL: https://dependabot-dependencies-f39b.ryl-docs.pages.dev

View logs

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Sep 4, 2026
Co-Authored-By: Claude <noreply@anthropic.com>
@github-actions

github-actions Bot commented Sep 6, 2026

Copy link
Copy Markdown

Test Coverage (nextest + cargo-llvm-cov)

Filename                                Regions    Missed Regions     Cover   Functions  Missed Functions  Executed       Lines      Missed Lines     Cover    Branches   Missed Branches     Cover
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
cli_support.rs                              168                 0   100.00%           7                 0   100.00%          95                 0   100.00%           0                 0         -
conf/mod.rs                                  10                 0   100.00%           1                 0   100.00%           7                 0   100.00%           0                 0         -
config.rs                                  1793                 0   100.00%         176                 0   100.00%        1281                 0   100.00%           0                 0         -
config_schema.rs                            491                 0   100.00%          46                 0   100.00%         389                 0   100.00%           0                 0         -
config_schema/serialization.rs              631                 0   100.00%          36                 0   100.00%         410                 0   100.00%           0                 0         -
config_schema/validation.rs                 171                 0   100.00%          21                 0   100.00%         146                 0   100.00%           0                 0         -
decoder.rs                                  482                 0   100.00%          35                 0   100.00%         321                 0   100.00%           0                 0         -
directives.rs                               284                 0   100.00%          24                 0   100.00%         174                 0   100.00%           0                 0         -
discover.rs                                  63                 0   100.00%           5                 0   100.00%          40                 0   100.00%           0                 0         -
fix.rs                                      602                 0   100.00%          39                 0   100.00%         385                 0   100.00%           0                 0         -
lint.rs                                     310                 0   100.00%          22                 0   100.00%         195                 0   100.00%           0                 0         -
lsp/actions.rs                              244                 0   100.00%          17                 0   100.00%         188                 0   100.00%           0                 0         -
lsp/analysis.rs                              98                 0   100.00%          10                 0   100.00%          74                 0   100.00%           0                 0         -
lsp/encoding.rs                             299                 0   100.00%          21                 0   100.00%         168                 0   100.00%           0                 0         -
lsp/hover.rs                                 39                 0   100.00%           3                 0   100.00%          28                 0   100.00%           0                 0         -
lsp/mod.rs                                 1016                 0   100.00%          75                 0   100.00%         766                 0   100.00%           0                 0         -
lsp/rename.rs                               158                 0   100.00%          11                 0   100.00%         111                 0   100.00%           0                 0         -
main.rs                                    1451                 0   100.00%          94                 0   100.00%         976                 0   100.00%           0                 0         -
markdown_embed/lint.rs                      109                 0   100.00%           6                 0   100.00%          75                 0   100.00%           0                 0         -
markdown_embed/mod.rs                       185                 0   100.00%          14                 0   100.00%         133                 0   100.00%           0                 0         -
migrate.rs                                  351                 0   100.00%          27                 0   100.00%         255                 0   100.00%           0                 0         -
report.rs                                   349                 0   100.00%          10                 0   100.00%         204                 0   100.00%           0                 0         -
rules/anchors.rs                            184                 0   100.00%          11                 0   100.00%         155                 0   100.00%           0                 0         -
rules/block_scalar_chomping.rs               94                 0   100.00%          11                 0   100.00%          60                 0   100.00%           0                 0         -
rules/colons.rs                             299                 0   100.00%          20                 0   100.00%         228                 0   100.00%           0                 0         -
rules/commas.rs                             350                 0   100.00%          15                 0   100.00%         246                 0   100.00%           0                 0         -
rules/comments.rs                           194                 0   100.00%          12                 0   100.00%         125                 0   100.00%           0                 0         -
rules/comments_indentation.rs               380                 0   100.00%          20                 0   100.00%         230                 0   100.00%           0                 0         -
rules/document_end.rs                       197                 0   100.00%          15                 0   100.00%         133                 0   100.00%           0                 0         -
rules/document_start.rs                     122                 0   100.00%          11                 0   100.00%          82                 0   100.00%           0                 0         -
rules/empty_lines.rs                        196                 0   100.00%          10                 0   100.00%         128                 0   100.00%           0                 0         -
rules/empty_values.rs                       155                 0   100.00%          12                 0   100.00%         139                 0   100.00%           0                 0         -
rules/float_values.rs                       270                 0   100.00%          24                 0   100.00%         170                 0   100.00%           0                 0         -
rules/hyphens.rs                            150                 0   100.00%           8                 0   100.00%         105                 0   100.00%           0                 0         -
rules/indentation.rs                        682                 0   100.00%          45                 0   100.00%         587                 0   100.00%           0                 0         -
rules/key_duplicates.rs                     684                 0   100.00%          47                 0   100.00%         464                 0   100.00%           0                 0         -
rules/key_ordering.rs                       208                 0   100.00%          23                 0   100.00%         142                 0   100.00%           0                 0         -
rules/line_length.rs                        193                 0   100.00%          15                 0   100.00%         132                 0   100.00%           0                 0         -
rules/merge_keys.rs                          49                 0   100.00%           2                 0   100.00%          32                 0   100.00%           0                 0         -
rules/new_line_at_end_of_file.rs             29                 0   100.00%           3                 0   100.00%          19                 0   100.00%           0                 0         -
rules/new_lines.rs                           92                 0   100.00%           7                 0   100.00%          61                 0   100.00%           0                 0         -
rules/octal_values.rs                       104                 0   100.00%          11                 0   100.00%          70                 0   100.00%           0                 0         -
rules/quoted_strings.rs                    1229                 0   100.00%          95                 0   100.00%         879                 0   100.00%           0                 0         -
rules/support/comments_scan.rs               21                 0   100.00%           2                 0   100.00%          16                 0   100.00%           0                 0         -
rules/support/flow_collection.rs            613                 0   100.00%          36                 0   100.00%         501                 0   100.00%           0                 0         -
rules/support/line_syntax.rs                254                 0   100.00%          21                 0   100.00%         181                 0   100.00%           0                 0         -
rules/support/mapping_key_walker.rs          89                 0   100.00%          15                 0   100.00%          87                 0   100.00%           0                 0         -
rules/support/merge_key.rs                   13                 0   100.00%           2                 0   100.00%          12                 0   100.00%           0                 0         -
rules/support/punctuation.rs                158                 0   100.00%          16                 0   100.00%         107                 0   100.00%           0                 0         -
rules/support/span_utils.rs                  74                 0   100.00%          11                 0   100.00%          62                 0   100.00%           0                 0         -
rules/support/yaml_version.rs                67                 0   100.00%          10                 0   100.00%          45                 0   100.00%           0                 0         -
rules/tags.rs                               119                 0   100.00%           9                 0   100.00%          90                 0   100.00%           0                 0         -
rules/trailing_spaces.rs                     73                 0   100.00%           3                 0   100.00%          35                 0   100.00%           0                 0         -
rules/truthy.rs                             241                 0   100.00%          16                 0   100.00%         186                 0   100.00%           0                 0         -
rules/unicode_line_breaks.rs                 29                 0   100.00%           5                 0   100.00%          23                 0   100.00%           0                 0         -
yaml_dom/loader.rs                          186                 0   100.00%           6                 0   100.00%         121                 0   100.00%           0                 0         -
yaml_dom/scalar.rs                          142                 0   100.00%          11                 0   100.00%          71                 0   100.00%           0                 0         -
yaml_dom/tag.rs                              23                 0   100.00%           3                 0   100.00%          15                 0   100.00%           0                 0         -
yaml_dom/yaml_owned.rs                       69                 0   100.00%          14                 0   100.00%          53                 0   100.00%           0                 0         -
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
TOTAL                                     17336                 0   100.00%        1297                 0   100.00%       12213                 0   100.00%           0                 0         -

Missed Lines (per file)

@owenlamont
owenlamont merged commit d31b9ad into main Sep 6, 2026
3 checks passed
@owenlamont
owenlamont deleted the dependabot/dependencies-f39bfbcc4b branch September 6, 2026 09:30
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 github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant