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

Update all non-major dependencies #51

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 30, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
bindgen (source) build-dependencies minor 0.60.1 -> 0.69.0
cc build-dependencies patch 1.0.73 -> 1.0.98
clap dependencies patch 3.2.22 -> 3.2.25
env_logger dependencies minor 0.9.1 -> 0.11.0
gimli dependencies minor 0.26.2 -> 0.29.0
memmap2 dependencies minor 0.5.7 -> 0.9.0
nix dependencies minor 0.25.0 -> 0.28.0
object dependencies minor 0.29.0 -> 0.35.0
once_cell dependencies minor 1.15.0 -> 1.19.0
proc-maps dependencies minor 0.2.1 -> 0.3.0
symbolic dependencies minor 9.1.4 -> 9.2.1
syscalls dependencies patch 0.6.6 -> 0.6.18

Release Notes

rust-lang/rust-bindgen (bindgen)

v0.69.4

Compare Source

Added

Changed

Removed

Fixed

Security

v0.69.3

Compare Source

Added

Changed

  • Use CR consistently on windows (#​2698)
  • Replaced peeking_take_while by itertools (#​2724)

Removed

Fixed

  • Try to avoid repr(packed) for explicitly aligned types when not needed (#​2734)
  • Improved destructor handling on Windows (#​2663)
  • Support Float16 (#​2667)
  • Fix alignment contribution from bitfields (#​2680)
  • Fixed msrv build.

Security

  • Updated shlex dependency (RUSTSEC-2024-0006)

v0.69.2

Compare Source

Added

Changed

Removed

Fixed

  • Fixed generation of extern "C" blocks with llvm 18+. See #​2689.

Security

v0.69.1

Compare Source

Fixed

  • Allow to run bindgen -v without an input header argument.

v0.69.0

Compare Source

Added

  • Added the ParseCallbacks::header_file callback which runs on every filename passed to Builder::header.
  • Added the CargoCallbacks::new constructor which emits a cargo-rerun line
    for every input header file by default.
  • Added the CargoCallbacks::rerun_on_header_files method to configure whether
    a cargo-rerun line should be emitted for every input header file.

Changed

  • The --wrap-static-fns feature was updated so function types that has no
    argument use void as its sole argument.
  • CargoCallbacks is no longer a unit-like
    struct
    and the
    CargoCallbacks constant was added to mitigate the breaking nature of this
    change. This constant has been marked as deprecated and users will have to
    use the new CargoCallbacks::new method in the future.

Removed

Fixed

  • Allow compiling bindgen-cli with a static libclang.
  • Emit an opaque integer type for pointer types that don't have the same size
    as the target's pointer size.
  • Avoid escaping Objective-C method names unless they are Self, self,
    crate or super.

Security

v0.68.1

Compare Source

Fixed

  • Fixed errors on the windows artifact build process.

v0.68.0

Compare Source

Added

  • The system ABI is now supported as an option for the --override-abi flag.
  • The allowlist_item method and the --allowlist-item flag have been
    included to filter items regardless or their kind.
  • Include installers as release artifacts on Github.

Changed

  • The Clone implementation for _BindgenUnionField has been changed to pass
    the incorrect_clone_impl_on_copy_type Clippy lint.
  • The c_unwind ABI can be used without a feature gate for any Rust target version
    equal to or greater than 1.71.
    This comes as a result of the ABI being stabilised (in Rust 1.71).
  • Formatting changes when using prettyplease as a formatter due to a new
    prettyplease version.
  • Avoid generating invalid CStr constants when using the --generate-cstr
    option.

Removed

  • The extra_assert and extra_assert_eq macros are no longer exported.

Fixed

  • Bindgen no longer panics when parsing an objective-C header that includes a
    Rust keyword that cannot be a raw identifier, such as: self, crate,
    super or Self.

v0.66.1

Compare Source

Removed

  • Revert source order sorting (#​2543) due to correctness regressions #​2558.

v0.66.0

Compare Source

Added

  • Added the --generate-cstr CLI flag to generate string constants as &CStr
    instead of &[u8]. (Requires Rust 1.59 or higher.)
  • Added the --generate-shell-completions CLI flag to generate completions for
    different shells.
  • The --wrap-static-fns option can now wrap va_list functions as variadic functions
    with the experimental ParseCallbacks::wrap_as_variadic_fn method.
  • Add target mappings for riscv32imc and riscv32imac.
  • Add the ParseCallbacks::field_visibility method to modify field visibility.

Changed

  • Non-UTF-8 string constants are now generated as references (&[u8; SIZE])
    instead of arrays ([u8; SIZE]) to match UTF-8 strings.
  • Wrappers for static functions that return void no longer contain a return
    statement and only call the static function instead.
  • The --wrap-static-fns option no longer emits wrappers for static variadic
    functions.
  • Depfiles generated with --depfile or Builder::depfile will now properly
    generate module names and paths that include spaces by escaping them. To make
    the escaping clear and consistent, backslashes are also escaped.
  • Updated bitflags dependency to 2.2.1. This changes the API of CodegenConfig.
  • Prettyplease formatting is gated by an optional, enabled by default Cargo
    feature when depending on bindgen as a library.
  • Items are now parsed in the order they appear in source files. This may result in
    auto-generated _bindgen_* names having a different index.
  • Use default visibility for padding fields: Previously, padding fields were
    always public. Now, they follow the default visibility for the type they are
    in.
  • Compute visibility of bitfield unit based on actual field visibility: A
    bitfield unit field and its related functions now have their visibility
    determined based on the most private between the default visibility and the
    actual visibility of the bitfields within the unit.

Removed

  • Remove redundant Cargo features, which were all implicit:

    • bindgen-cli: env_logger and log removed in favor of logging
    • bindgen (lib):
      • log removed in favor of logging
      • which removed in favor of which-logging
      • annotate-snippets removed in favor of experimental
  • Prettyplease is available as a Formatter variant now.

v0.65.1

Compare Source

Fixed

  • The Builder::rustfmt_bindings method was added back and tagged as
    deprecated instead of being removed.
  • Broken documentation links were fixed.

v0.65.0

Compare Source

Added

  • Added the Builder::default_visibility method and the
    --default-visibility flag to set the default visibility of fields. (#​2338)
  • Added the --formatter CLI flag with the values none, rustfmt and
    prettyplease to select which tool will be used to format the bindings. The
    default value is rustfmt. (#​2453)
  • Added the Builder::formatter method and the Formatter type to select
    which tool will be used to format the bindings. (#​2453)
  • Added the Builder::emit_diagnostics method and the --emit-diagnostics
    flag to enable emission of diagnostic messages under the experimental
    feature. (#​2436)
  • Added support for the "efiapi" calling convention (#​2490).
  • Added the ParseCallbacks::read_env_var method which runs everytime
    bindgen reads and environment variable. (#​2400)
  • Added the ParseCallbacks::generated_link_name_override method which allow
    overriding the link name of items. (#​2425)
  • Add support for C enums when generating code while using the
    --wrap-static-fns feature. (#​2415)

Changed

  • Static functions with no arguments use void as their single argument
    instead of having no arguments when the --wrap-static-fns flag is used.
    (#​2443)
  • The source file generated when the --wrap-static-fns flag is enabled now
    contains #include directives with all the input headers and all the source
    code added with the header_contents method. (#​2447)
  • The source file generated when the --wrap-static-fns flag no longer uses
    asm labeling and the link name of static wrapper functions is allowed to
    be mangled. (#​2448)
  • The documentation of the generated type aliases now matches the comments
    of their typedef counterparts instead of using the comments of the aliased
    types. (#​2463)
  • The Builder::rustfmt_bindings methods and the --no-rustfmt-bindings flag
    are now deprecated in favor of the formatter API. (#​2453)

Removed

  • The following deprecated flags were removed: --use-msvc-mangling,
    --rustfmt-bindings and --size_t-is-usize. (#​2408)
  • The Bindings::emit_warnings and Bindings::warnings methods were removed
    in favor of --emit-diagnostics. (#​2436)
  • Bindgen no longer generates C string constants that cannot be represented as
    byte slices. (#​2487)

v0.64.0

Compare Source

Added

  • Added a new set of flags --with-derive-custom,
    --with-derive-custom-struct, --with-derive-custom-enum and
    --with-derive-custom-enum to add custom derives from the CLI.
  • Added the --experimental flag on bindgen-cli and the experimental
    feature on bindgen to gate experimental features whose implementation is
    incomplete or are prone to change in a non-backwards compatible manner.
  • Added a new set of flags and their equivalent builder methods
    --wrap-static-fns, --wrap-static-fns-suffix and --wrap-static-fns-path
    to generate C function wrappers for static or static inline functions.
    This feature is experimental.

Changed

  • Fixed name collisions when having a C enum and a typedef with the same
    name.
  • The ParseCallbacks::generated_name_override method now receives ItemInfo<'_> as
    argument instead of a &str.
  • Updated the clang-sys crate version to 1.4.0 to support clang 15.
  • The return type is now ommited in signatures of functions returning void.
  • Updated the clap dependency for bindgen-cli to 4.
  • Rewrote the bindgen-cli argument parser which could introduce unexpected
    behavior changes.
  • The ParseCallbacks::add_derives method now receives DeriveInfo<'_> as
    argument instead of a &str. This type also includes the kind of target type.

v0.63.0

Compare Source

Added

  • new feature: process_comments method to the ParseCallbacks trait to
    handle source code comments.

Changed

  • Only wrap unsafe operations in unsafe blocks if the --wrap_unsafe_ops
    option is enabled.
  • Replace the name: &str argument for ParseCallbacks::add_derives by
    info: DeriveInfo.
  • All the rust targets equal or lower than 1.30 are being deprecated and
    will be removed in the future. If you have a good reason to use any of these
    targets, please report it in the issue tracker.

Removed

  • The following deprecated methods and their equivalent CLI arguments were
    removed: whitelist_recursively, hide_type, blacklist_type,
    blacklist_function, blacklist_item, whitelisted_type,
    whitelist_type, whitelist_function, whitelisted_function,
    whitelist_var, whitelisted_var, unstable_rust.

v0.62.0

Compare Source

Added

  • new feature: --override-abi flag to override the ABI used by functions
    matching a regular expression.
  • new feature: allow using the C-unwind ABI in --override-abi on nightly
    rust.

Changed

  • Regex inputs are sanitized so alternation (a|b) is handled correctly but
    wildcard patterns (*) are now considered invalid. The .* pattern can be
    used as a replacement.
  • the ParseCallbackstrait does not require to implement UnwindSafe.
  • the Builder::parse_callbacks method no longer overwrites previously added
    callbacks and composes them in a last-to-first manner.
  • any generated rust code containing unsafe operations inside unsafe functions
    is wrapped in unsafe blocks now.

Fixed

  • Various issues with upcoming clang/libclang versions have been fixed.

v0.61.0

Compare Source

Released 2022/10/16

Added

  • new feature: --sort-semantically flag to sort the output in a predefined
    manner (#​1743).
  • new feature: Bindgen::emit_warnings method to emit warnings to stderr in
    build scripts.
  • new feature: --newtype-global-enum flag to generate enum variants as
    global constants.
  • new feature: --default-non-copy-union-style flag to set the default style
    of code used to generate unions with non-Copy members.
  • new feature: --bindgen-wrapper-union flag to mark any union that matches a
    regex and has a non-Copy member to use a bindgen-generated wrapper for its
    fields.
  • new feature: --manually-drop-union flag to mark any union that matches a
    regex and has a non-Copy member to use ManuallyDrop.
  • new feature: --merge-extern-blocks flag to merge several extern blocks
    that have the same ABI.
  • new feature: --no-size_t-is-usize flag to not bind size_t as usize.
  • new feature: Builder implements Clone.

Changed

  • clap and regex have been updated, new msrv is 1.57.
  • The --enable-function-attribute-detection flag is also used to detect
    diverging functions so the generated bindings use ! as the return type.
  • The --size_t-is-usize flag is enabled by default.
  • Unused type aliases for <stdint.h> types are no longer emitted.
  • The blocklist options now can be used to block objective-C methods.
  • The core::ffi module is used the sized raw integer types
    instead of std::os::raw if the Rust target version is 1.64 or higher and
    the --use-core flag is enabled.
  • The bindgen CLI utility must be installed using cargo install bindgen-cli now.
  • Using bindgen as a library no longer pulls clap and any other CLI
    related dependencies.

Fixed

  • Const correctness of incomplete arrays has been fixed. (#​2301)
  • C++ inline namespaces don't panic. (#​2294)
rust-lang/cc-rs (cc)

v1.0.98

Compare Source

What's Changed
New Contributors

Full Changelog: rust-lang/cc-rs@1.0.97...1.0.98

v1.0.97

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.96...1.0.97

v1.0.96

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.95...1.0.96

v1.0.95

Compare Source

What's Changed

Full Changelog: rust-lang/cc-rs@1.0.94...1.0.95

v1.0.94

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.93...1.0.94

v1.0.93

Compare Source

What's Changed

Full Changelog: rust-lang/cc-rs@1.0.92...1.0.93

v1.0.92

Compare Source

What's Changed

Full Changelog: rust-lang/cc-rs@1.0.91...1.0.92

v1.0.91

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.90...1.0.91

v1.0.90

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.89...1.0.90

v1.0.89

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.88...1.0.89

v1.0.88

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.87...1.0.88

v1.0.87

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.86...1.0.87

v1.0.86

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.85...1.0.86

v1.0.85

Compare Source

[!IMPORTANT]

This release has been yanked, due to panicking in freeBSD debug build. A release without these issues will be made in the near future.

Sorry, and thanks.

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.84...1.0.85

v1.0.84

Compare Source

[!IMPORTANT]

This release has been yanked, due to the Apple deployment target changes causing unintentional widespread breakage for building C++ code on the target (for projects without an explicit deployment target set). A release without these issues will be made in the near future.

Sorry, and thanks.

Changes

This isn't a complete list, but I've tried to cover everything that is either significant, or could cause problems for people using cc in configurations not covered by our tests.

As always, please file bugs if you hit issues. cc is used in many more ways than we can possibly test (especially when cross-compiling or using tier-3 platforms).

Thanks.

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.83...1.0.84

v1.0.83

Compare Source

What's Changed

New Contributors

Full Changelog: rust-lang/cc-rs@1.0.82...1.0.83

v1.0.82

Compare Source

This release corrects a deadlock and potential performance regression present since 1.0.80, and contains no other changes. See https://github.com/rust-lang/cc-rs/pull/849 for details.

v1.0.81

Compare Source

This release exists to fix a bug introduced in 1.0.80 where we would panic if non-UTF8 were written to stderr by the C compiler. See https://github.com/rust-lang/cc-rs/pull/842 and https://github.com/rust-lang/cc-rs/issues/841 for more info.

v1.0.80

Compare Source

What's Changed


Configuration

📅 Schedule: Branch creation - "before 4am every weekend" in timezone Asia/Tokyo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fe1d975 to db7a98e Compare October 2, 2022 23:52
@renovate renovate bot changed the title Update Rust crate symbolic to 9.2.1 Update all non-major dependencies Oct 2, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from bcc909d to 1d115b8 Compare October 16, 2022 20:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 5435dba to 42c36d1 Compare October 29, 2022 15:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from c55bef1 to 4072858 Compare November 9, 2022 12:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from f268491 to 4a4581a Compare November 22, 2022 21:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 4a4581a to 77749bc Compare November 24, 2022 08:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ff85ee0 to f712d9a Compare March 16, 2023 18:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4df5fff to 38698f4 Compare March 23, 2023 06:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 38698f4 to 51b8723 Compare April 17, 2023 12:00
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6493a20 to d29a726 Compare May 29, 2023 10:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 4d1d039 to f4fc4bd Compare June 8, 2023 14:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 321981a to 883f9e1 Compare January 19, 2024 19:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 183c5e0 to 9f74c41 Compare January 27, 2024 06:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 11f880a to e971bf5 Compare February 4, 2024 16:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 6304300 to 9d1923b Compare February 14, 2024 01:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 2c59d88 to 8bbf093 Compare February 25, 2024 16:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 839c9f8 to 7a6e234 Compare March 11, 2024 08:34
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 049f4f3 to d77018b Compare March 16, 2024 04:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 9cb68da to 394070d Compare April 13, 2024 16:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 394070d to ce7be61 Compare April 20, 2024 06:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 86e551e to a01a6e7 Compare May 6, 2024 09:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a01a6e7 to 642b6e3 Compare May 19, 2024 12:18
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