Stranger6667 / css-inline

High-performance library for inlining CSS into HTML 'style' attributes
https://css-inline.org/
MIT License
232 stars 29 forks source link

build(deps): update magnus requirement from 0.6 to 0.7 in /bindings/ruby #378

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 1 month ago

Updates the requirements on magnus to permit the latest version.

Release notes

Sourced from magnus's releases.

0.7.1

Magnus 0.7.1 is a patch release, with 1 documentation fix.

Fixes building docs against Ruby 3.0. This should resolve building docs for docs.rs.

See the 0.7.0 release for what's new in 0.7.

Changelog

Sourced from magnus's changelog.

[0.7.1] - 2024-06-30

Fixed

  • Building docs with Ruby 3.0

[0.7.0] - 2024-06-30

Added

  • Thread, Ruby::thread_create/thread_create_from_fn and other thread APIs.
  • Mutex, Ruby::mutex_new and other mutex APIs.
  • Fiber, Ruby::fiber_new/fiber_new_from_fn and other fiber APIs (requires Ruby >= 3.1).
  • Ruby::ary_try_from_iter is an efficient way to create a Ruby array from a fallible Rust iterator.
  • Ruby::hash_from_iter and Ruby::hash_try_from_iter.
  • RFile implements AsRawFd.
  • TypedArray<T>, a Ruby Array that may only contain elements of type T. On creation the Array is hidden from Ruby, and must be consumed to pass it to Ruby (where it reverts to a regular untyped Array). It is then inaccessible to Rust.
  • Implement IntoIterator for RArray.
  • Implement PartialEq, PartialOrd, Add, Sub, Mul, and Div for Integer.
  • Time with automatic conversion to/from std::time::SystemTime.
  • Ruby::alias_variable.
  • Ruby::waitpid.
  • RHash::lookup2.
  • Ruby::define_data new for Ruby 3.3.
  • IntoError trait for conversion to Error, plus impl ReturnValue for Result<T, E> where E: IntoError to allow returning custom error types to Ruby.

Changed

  • Closures/Functions used as Ruby blocks/procs take an additional first argument of &Ruby.

Deprecated

  • RArray::each. Please use ary.into_iter() or ary.enumeratorize("each", ()) instead.

Removed

  • deprecated-send-sync-value feature.
  • ruby-static feature. Instead enable the feature for rb-sys in your Cargo.toml like so: rb-sys = { version = "*", features = ["ruby-static"] }
  • typed_data::Obj::get.
  • The QTRUE, QFALSE, and QNIL constants.
  • Class::undef_alloc_func.
  • Value::try_convert.
  • Binding.
  • gc::{mark, mark_slice, mark_movable, location}.
  • RStruct::as_slice.

... (truncated)

Commits
  • eb0d8ef bump version to 0.7.1
  • 4250b30 fix building docs under ruby 3.0
  • 0937086 prepare for 0.7.0 release
  • 84d917b Merge pull request #110 from macournoyer/cloneable-error
  • 6793884 Make Error and OpaqueError cloneable
  • 324f57e better note as to why ci skips ruby 3.1/macos-14
  • d24a8f3 update changelog for 0.6.4 release
  • fb83309 fix potential deadlock in Lazy
  • 458b1e8 fix Cargo.lock for gem examples
  • 6277554 allow returning custom error types with automatic conversion to Error
  • 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 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
codspeed-hq[bot] commented 1 month ago

CodSpeed Performance Report

Merging #378 will not alter performance

Comparing dependabot/cargo/bindings/ruby/magnus-0.7 (436ccfa) with master (b5738eb)

Summary

✅ 6 untouched benchmarks

codecov[bot] commented 1 month ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 89.53%. Comparing base (b5738eb) to head (436ccfa).

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #378 +/- ## ======================================= Coverage 89.53% 89.53% ======================================= Files 18 18 Lines 1998 1998 ======================================= Hits 1789 1789 Misses 209 209 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

Stranger6667 commented 1 month ago

@dependabot rebase