Skip to content

fix(deps): update minor and patch dependencies - #290

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/minor-and-patch-dependencies
Open

fix(deps): update minor and patch dependencies#290
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/minor-and-patch-dependencies

Conversation

@renovate

@renovate renovate Bot commented Aug 24, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Type Update Change
actions/deploy-pages action patch v5.0.0v5.0.1
aes-gcm dependencies patch 0.11.00.11.1
anthropics/claude-code-action action patch v1.0.201v1.0.219
object dependencies minor 0.37.30.40.0
reqwest dependencies patch 0.13.40.13.5
rust (source, changelog) uses-with minor 1.95.01.98.1
softprops/action-gh-release action patch v3.0.2v3.0.3
syn dev-dependencies patch 2.0.1172.0.119
toml workspace.dependencies patch 1.1.4+spec-1.1.01.1.5
tss-esapi workspace.dependencies patch 8.0.0-alpha.28.0.0-alpha.3
zvariant dev-dependencies minor 5.14.05.15.0
zvariant dependencies minor 5.14.05.15.0

Release Notes

actions/deploy-pages (actions/deploy-pages)

v5.0.1

Compare Source

Changelog


See details of all code changes since previous release.

⚠️ For use with products other than GitHub.com, such as GitHub Enterprise Server, please consult the compatibility table.

RustCrypto/AEADs (aes-gcm)

v0.11.1

Compare Source

anthropics/claude-code-action (anthropics/claude-code-action)

v1.0.219

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.218...v1.0.219

v1.0.218

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.217...v1.0.218

v1.0.217

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.216...v1.0.217

v1.0.216

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.215...v1.0.216

v1.0.215

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.214...v1.0.215

v1.0.214

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.213...v1.0.214

v1.0.213

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.212...v1.0.213

v1.0.212

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.211...v1.0.212

v1.0.211

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.210...v1.0.211

v1.0.210

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.209...v1.0.210

v1.0.209

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.208...v1.0.209

v1.0.208

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.207...v1.0.208

v1.0.207

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.206...v1.0.207

v1.0.206

Compare Source

v1.0.205

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.203...v1.0.205

v1.0.204

Compare Source

Full Changelog: anthropics/claude-code-action@v1.0.202...v1.0.204

v1.0.203

Compare Source

v1.0.202

Compare Source

gimli-rs/object (object)

v0.40.0

Compare Source

Released 2026/08/01.

Breaking changes
  • Changed many file format struct fields and constants to use newtypes.
    Newtypes for bit flags have methods such as contains and intersects.
    Some constants are fields within another newtype and have methods for conversion.
    The raw values are always accessible by .0.
    #​894
    #​897
    #​898
    #​899
    #​900
    #​957
    #​958
    #​959
    #​970

  • Updated macho::DyldCacheHeader to dyld-1340.
    #​885

  • Deleted SectionKind::Elf and added sh_type field to SectionFlags::Elf.
    #​891

  • Added feature gates to variants of FileFlags, SegmentFlags,
    SectionFlags, SymbolFlags, and RelocationFlags.
    #​891

  • Added p_type field to SegmentFlags::Elf.
    Added n_type field to SymbolFlags::MachO.
    Added typ and storage_class fields to SymbolFlags::CoffSection.
    Added n_type field to SymbolFlags::Xcoff.
    Added reserved2 field to SectionFlags::MachO.
    #​891
    #​963

  • Renamed build::elf::AttributeTag to AttributeScope.
    #​894

  • Changed write::elf::Writer::reserve_strtab/reserve_shstrtab/reserve_dynstr
    and write::coff::Writer::reserve_symtab_strtab to return an Error for
    null bytes in strings, or table size overflow.
    #​905

  • Changed many write::elf::Writer methods to return u64 instead of usize.
    #​909

  • Replaced name fields in write::elf::SectionHeader, write::elf::Sym,
    write::elf::Verdef and write::elf::Vernaux with string table offsets.
    Added write::elf::Writer methods to obtain these offsets.
    #​910

  • Added hash fields to write::elf::Verdef and write::elf::Vernaux.
    Use elf::hash to calculate the hash values.
    #​910

  • Replaced write::elf::Class with write::elf::Encoder,
    and replaced build::elf::Builder::class with encoder.
    #​910

  • Deleted write::elf::Writer::reserve_*_section_index_with_name
    and write::elf::Writer::reserve_dynamics. There is no replacement
    for these.
    #​912

  • Changed offsets from usize to u64 in write::WritableBuffer
    and low level writing APIs.
    #​914

  • Improved overflow handling when writing. Some overflow handling for
    write::elf::Writer has been shifted to the caller, as indicated by
    narrowed parameter types for reserve_program_headers,
    reserve_gnu_verdef and reserve_gnu_verneed.
    #​918

  • Added tool version data to read::macho::LoadCommandVariant::BuildVersion
    and endian parameter to read::macho::LoadCommandData::build_version.
    #​920

  • Added offset parameter to read::macho::Section::file_range and data.
    Added read::macho::Segment::section_offsets to assist.
    #​923
    #​968

  • Replaced write::WritableBuffer::resize with write_zeros and deleted
    write::WritableBuffer::len. Added write::CountingBuffer which can
    wrap WritableBuffer to provide resize and count methods.
    #​930
    #​931

  • Moved write::WritableBuffer::write_pod and write_pod_slice to a
    new write::WritableBufferExt trait, and deleted the write and
    write_slice methods for dyn WritableBuffer.
    #​930

  • Sealed low level parsing traits.
    #​934

  • Renamed read::coff::ImageSymbol to read::coff::Symbol.
    #​936

  • Added read::pe::ExportOrdinal and read::pe::ExportAddressIndex,
    and changed read::pe::ExportTable methods to use them.
    #​942

  • Changed read::Object::imports and read::Object::exports to iterators,
    and expanded read::Import and read::Export to handle more types of
    imports and exports. Import::name and Export::name return NameOrOrdinal
    and Export::address is replaced by Export::target.
    #​941
    #​945
    #​946
    #​949
    #​955
    #​956

  • Fixed handling of common symbols for Mach-O; it is now similar to other formats.
    Folded SectionKind::Common into SectionKind::UninitializedData and
    deleted write::StandardSection::Common, and write::Object::has_common.
    read::macho::Nlist::is_undefined now excludes common symbols.
    #​964

  • Changed write::Symbol::value to hold the alignment for common symbols.
    This is supported for ELF and Mach-O.
    #​964

  • Changed the return types of read::elf::FileHeader::phnum and shnum
    from usize to u32.
    #​966

Added
  • Added names feature to provide display names for file format constants.
    #​876
    #​878
    #​902

  • Added relocation parsing for Wasm.
    #​895

  • Added more PE constants definitions.
    #​903

  • Added z/OS archive support.
    #​904

  • Added write::elf::GrowableBuffer and write::elf::SinglePhaseWriter.
    #​908
    #​909
    #​916
    #​917

  • Added write::StringTable.
    #​910

  • Added write::macho::Encoder.
    #​913
    #​967

  • Added build::macho::Builder.
    #​921
    #​925

  • Added macho::DyldInfoCommand methods to parse rebases, binds, and exports.
    #​922

  • Added macho::LinkeditDataCommand::chained_fixups.
    #​924

  • Added macho::LinkeditDataCommand::code_signature.
    #​932

  • Added initial GOFF definitions as an unstable feature.
    #​926
    #​962

  • Added Architecture::Ia64.
    #​927

  • Added RelocationKind support for macho::ARM64_RELOC_POINTER_TO_GOT.
    #​929

  • Added read::macho::LoadCommandData::offset.
    #​937

  • Added parsing support for macho::R_ABS.
    #​938

  • Added read::Object::import_libraries.
    #​960

  • Added from_raw methods for various write::elf structs.
    #​966

Changed
  • Changed the minimum supported rust version (MSRV) for the read feature and
    its dependencies to 1.85.0.
    #​892

  • Changed the rust edition to 2024.
    #​893

  • Fixed SectionKind for Wasm reloc.* sections.
    #​896

  • Fixed ELF .symtab_shndx writing when st_shndx is not SHN_INDEX.
    #​906

  • Changed write::elf::Writer to handle e_phnum overflow.
    #​907

  • Fix ELF .gnu.attributes alignment when writing.
    #​912

  • Fixed some malformed data handling.
    #​939
    #​940
    #​961

  • Fixed COFF archive parsing of `/' member when no names table is
    present.
    #​947
    #​948

  • Fixed read::ObjectSymbol::address to return 0 for common symbols instead
    of the alignment.
    #​964

  • Changed Mach-O SectionKind parsing to use flags where possible instead
    of segment and section names.
    #​965

  • Updated ruzstd and wasmparser dependencies.


v0.39.1

Compare Source

Released 2026/04/21.

Changed
  • Changed read::PeFile::imports to return an error for empty import names.
    #​873

  • Fixed read::PeFile::imports to handle import names in a different section.
    #​881

  • Fixed the ELF section flags for write::StandardSection::EhFrame.
    #​877

  • Updated hashbrown, indexmap, and wasmparser dependencies.
    #​879

Added
  • Added Android definitions for ELF.
    #​875

  • Updated Mach-O definitions.
    #​883

  • Added read::macho::LoadCommandData::dylib_use_flags.
    #​887


v0.39.0

Compare Source

Released 2026/03/29.

Breaking changes
  • Changed read::NativeFile to use NativeEndian instead of Endianness.
    #​851

  • Changed the type of elf::Dyn32/64::d_tag to signed (i32/i64).
    Changed the type of DT_* constants to i64.
    Changed write::elf::Writer::write_dynamic parameter to match.
    #​852

  • Changed parsing to always support unaligned data.
    The unaligned feature now has no effect.
    #​861

  • Changed read::SymbolMapName::new to accept a size parameter.
    #​863

Changed
  • Changed read::MachOFile::entry to handle LC_UNIXTHREAD load commands.
    #​837

  • Reduced the size of read::elf::CrelIterator.
    #​840

  • Improved debug output for read::*File by hiding the raw data bytes.
    #​853

  • Removed DT_SYMBOLIC from the read::elf::Dyn::is_address check.
    #​854

  • Changed read::macho to treat ltmp* symbols as section symbols.
    #​856

  • Changed read::Relocation::encoding for unknown relocations to
    RelocationEncoding::Unknown.
    #​857

  • Changed read::RelocationMap to handle RelocationKind::None and
    check for supported RelocationEncoding.
    #​857

  • Changed read::elf to return RelocationKind::GotRelative for
    elf::R_X86_64_GOTPCRELX and elf::R_X86_64_REX_GOTPCRELX.
    #​859

  • Changed elf::R_X86_64_PLT32 and macho::X86_64_RELOC_BRANCH
    to use RelocationKind::PltRelative and RelocationEncoding::X86Branch.
    #​860

  • Changed read::macho and write::Object to handle macho::ARM64_RELOC_BRANCH26.
    #​860

  • Changed read::SymbolMap to include symbol sizes.
    Deprecated read::SymbolMap::get. Use before or containing instead.
    #​863

  • Changed read::elf to include unsized symbols in is_definition.
    #​866

  • Changed pod::slice_from_all_bytes/_mut to handle zero-sized types.
    #​868

  • Updated wasmparser dependency.

Added
  • Added read::ObjectSegment::permissions.
    #​838

  • Added elf::R_X86_64_CODE_* relocations.
    #​839

  • Added read::macho::Section::reserved1 and Section::reserved2.
    #​846

  • Added From implementations for fixed endian integers.
    #​850

  • Added Native*File types for each file format.
    #​851

  • Added read::elf::ElfFile::elf_dynamic_table.
    #​854

  • Added read::Relocation::subtractor and write::Object::add_relocation_with_subtractor
    to handle macho::ARM64_RELOC_SUBTRACTOR and macho::X86_64_RELOC_SUBTRACTOR.
    #​856
    #​860

  • Added write::StandardSection::EhFrame.
    #​856

  • Added SymbolFlags::elf_visibility.
    #​859

  • Added read::macho::Section::symbol_stub_size and indirect_symbols.
    #​862

  • Added missing elf::DT_RELR* constants.
    #​864

  • Added elf::R_AARCH64_PLT32 and elf::R_AARCH64_GOTPCREL32.
    #​865


v0.38.1

Compare Source

Released 2026/01/02.

Changed
  • Updated wasmparser dependency.
Added
  • Added basic PowerPC relocation support for Mach-O.
    #​825

  • Added more ELF relocations for LoongArch.
    #​826
    #​827

  • Added RelocationKind::None.
    #​828

  • Added write::StreamingBuffer::flush.
    #​829


v0.38.0

Compare Source

Released 2025/11/21.

Breaking changes
  • Changed the type of macho::EXPORT_SYMBOL_FLAGS constants to u8.
    #​817

  • Fixed the type of the StringTable parameter for read::elf::Dyn::string.
    #​812

Changed
  • Updated hashbrown and wasmparser dependencies.
    #​806

  • The minimum supported rust version with all features enabled has changed to 1.87.0.
    Changes to the minimum supported rust version are not considered breaking changes.

Added
  • Added more RISC-V constants for ELF.
    #​809

  • Added more AArch64 constants for ELF.
    #​819

  • Added macho::LinkeditDataCommand::function_starts and associated parser.
    #​814
    #​816

  • Added macho::LinkeditDataCommand::exports_trie and associated parser.
    #​817


seanmonstar/reqwest (reqwest)

v0.13.5

Compare Source

  • Add Error::is_dns() to identify errors caused by DNS resolution failures.
  • Add ClientBuilder::http1_max_headers(usize) to configure the maximum number of headers accepted in an HTTP/1 response (default 100).
  • Add TLS version to TlsInfo extension.
  • Fix hickory-dns feature to use Ipv6AndIpv4 strategy to prefer IPv6.
  • Fix sending wrong proxy-auth if multiple proxies intercept a given URL.
rust-lang/rust (rust)

v1.98.1

Compare Source

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

v1.98.0

Compare Source

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

Language

Platform Support

Refer to Rust's platform support page
for more information on Rust's tiered platform support.

Libraries

Stabilized APIs

Compatibility Notes

v1.97.1

Compare Source

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

  • rustc: Fix miscompilation in LLVM optimization
    This backports an LLVM submodule bump to include the LLVM-side fix and a
    revert of the rustc change that is one known trigger for the bug. The rustc
    side revert should not be strictly necessary but is done out of abundance of caution.

v1.97.0

Compare Source

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

Language

Platform Support

Refer to Rust's platform support page
for more information on Rust's tiered platform support.

Stabilized APIs

These previously stable APIs are now stable in const contexts:

Cargo

Rustdoc

Compatibility Notes

v1.96.1

Compare Source

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

v1.96.0

Compare Source

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

Language

Compiler

Libraries

Stabilized APIs

Cargo

Rustdoc

Compatibility Notes

Internal Changes

These changes do not affect any public interfaces of Rust, but they represent
significant improvements to the performance or internals of rustc and related
tools.

softprops/action-gh-release (softprops/action-gh-release)

v3.0.3

Compare Source

3.0.3 is a maintenance release with updated dependencies. It also safely
classifies malformed GitHub API errors to avoid secondary failures (#​822).

What's Changed

Bug fixes 🐛
Other Changes 🔄
  • dependency updates
dtolnay/syn (syn)

v2.0.119

Compare Source

  • Preserve attributes on tail-call expressions in statement position (#​1994)
  • Parse field-representing types builtin in type position (#​1996)

v2.0.118

Compare Source

  • Documentation improvements
toml-rs/toml (toml)

v1.1.5

Compare Source

z-galaxy/zbus (zvariant)

v5.15.0

Compare Source

CI
  • 💚 Work around nightly rustfmt macro mangling.
Deprecated
  • 🗑️ Deprecate GVariant support in zvariant.
Documentation
  • 📝 Point GVariant users to the zgvariant crate.
Fixed
  • 🐛 Support zvariant_utils/gvariant being enabled externally. #​1910
Removed
  • 🔥 Remove the gvariant fuzz target.
  • 🔥 Remove gvariant benches, ostree tests and test data.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "before 9am on monday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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 force-pushed the renovate/minor-and-patch-dependencies branch 10 times, most recently from 7e67199 to aedb024 Compare August 30, 2026 01:49
@renovate
renovate Bot force-pushed the renovate/minor-and-patch-dependencies branch 11 times, most recently from 35d45cf to e1511c9 Compare September 7, 2026 19:29
@renovate
renovate Bot force-pushed the renovate/minor-and-patch-dependencies branch from e1511c9 to 5390715 Compare September 9, 2026 03:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants