chore(deps): bump the ruby group with 5 updates
Type: Pull Request
State: Open
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 0
(23 days ago)
(23 days ago)
dependencies ruby
Bumps the ruby group with 5 updates:
Package | From | To |
---|---|---|
rubocop | 1.80.1 |
1.80.2 |
bigdecimal | 3.2.2 |
3.2.3 |
mime-types-data | 3.2025.0826 |
3.2025.0902 |
rexml | 3.4.2 |
3.4.3 |
sass-embedded | 1.91.0 |
1.92.1 |
Updates rubocop
from 1.80.1 to 1.80.2
Release notes
Sourced from rubocop's releases.
RuboCop v1.80.2
Bug fixes
- #14477: Fix a false positive for
Style/SafeNavigation
when using ternary expression with index access call with method chain. (@koic
)- #14486: Fix false positives for
Style/RedundantParentheses
with unary operators andyield
,super
, ordefined?
. (@earlopain
)- #14489: Fix false negatives for
Style/RedundantParentheses
with method calls taking argument without parentheses likereturn (x y) if z
. (@earlopain
)- #14499: Fix wrong autocorrect for
Style/StringConcatenation
when a double-quoted string contains escaped quotes and interpolation. (@earlopain
)- #14502: Fix wrong autocorrect for
Style/StringConcatenation
when a single-quoted string contains interpolation like'#{foo}'
. (@earlopain
)Changes
Changelog
Sourced from rubocop's changelog.
1.80.2 (2025-09-03)
Bug fixes
- #14477: Fix a false positive for
Style/SafeNavigation
when using ternary expression with index access call with method chain. ([@koic
][])- #14486: Fix false positives for
Style/RedundantParentheses
with unary operators andyield
,super
, ordefined?
. ([@earlopain
][])- #14489: Fix false negatives for
Style/RedundantParentheses
with method calls taking argument without parentheses likereturn (x y) if z
. ([@earlopain
][])- #14499: Fix wrong autocorrect for
Style/StringConcatenation
when a double-quoted string contains escaped quotes and interpolation. ([@earlopain
][])- #14502: Fix wrong autocorrect for
Style/StringConcatenation
when a single-quoted string contains interpolation like'#{foo}'
. ([@earlopain
][])Changes
Commits
e2afd61
Cut 1.80.202d4593
Update Changelogca1b813
[Fix #14502] Fix wrong autocorrect forStyle/StringConcatenation
when a sin...06e1b4f
Remove some boilerplate when testing the lsp addon9a82957
Merge pull request #14500 from Earlopain/string-concat-escaped2f2f63a
[Fix #14499] Fix wrong autocorrect forStyle/StringConcatenation
with escap...cc4d7a1
Use RuboCop RSpec 3.7 for development819ea46
Reset the docs version2271a78
Merge pull request #14489 from Earlopain/redundant-parens-yield-etc6bdff54
Merge pull request #14495 from koic/make_naming_predicate_method_allow_initia...- Additional commits viewable in compare view
Updates bigdecimal
from 3.2.2 to 3.2.3
Release notes
Sourced from bigdecimal's releases.
v3.2.3
What's Changed
- Fix sign of bigdecimal**bigint by
@tompng
in ruby/bigdecimal#341- Fix BigMath.atan precision safe margin by
@tompng
in ruby/bigdecimal#320- Fix typo in BigDecimal#scale comment by
@timcraft
in ruby/bigdecimal#348- Allow BigDecimal accept Float without precision by
@mrzasa
in ruby/bigdecimal#314- Fix edgecase segfault of BigDecimal#remainder by
@tompng
in ruby/bigdecimal#349- Fix precision of BigMath.sin(x,prec) and BigMath.cos(x,prec) for large x by
@tompng
in ruby/bigdecimal#346- Fix wrong converge check in VpSqrt by
@tompng
in ruby/bigdecimal#353- Bump step-security/harden-runner from 2.12.0 to 2.12.1 by
@dependabot
[bot] in ruby/bigdecimal#356- Ensure BigMath.sin and BigMath.cos to be within -1..1 by
@tompng
in ruby/bigdecimal#317- Remove BigDecimal_divremain(which has a bug) and use BigDecimal_DoDivmod instead by
@tompng
in ruby/bigdecimal#351- Bump step-security/harden-runner from 2.12.1 to 2.12.2 by
@dependabot
[bot] in ruby/bigdecimal#359- Remove back pointer from Real to VALUE by
@tompng
in ruby/bigdecimal#344- Update docs for #to_d core extensions by
@dduugg
in ruby/bigdecimal#360- Fix compiling issue (when BIGDECIMAL_DEBUG is 1) by
@tompng
in ruby/bigdecimal#363- Use a correct term: engineering notation -> scientific notation by
@mame
in ruby/bigdecimal#365- Fix to_f underflow check when DECDIG is uint16_t by
@tompng
in ruby/bigdecimal#364- Fix VpNumOfChars calculation for the longest case by
@tompng
in ruby/bigdecimal#366- Fix a bug that exponent overflow is ignored in add, sub, mult and div operation by
@tompng
in ruby/bigdecimal#367- Fix dump/load bigdecimal with few or large precs by
@tompng
in ruby/bigdecimal#362- Refactor AddExponent overflow/underflow check by
@tompng
in ruby/bigdecimal#368- Strict BigDecimal("0.1e#{exponent}") exponent overflow/underflow check by
@tompng
in ruby/bigdecimal#369- Add DECDIG=16bit CI workflow by
@tompng
in ruby/bigdecimal#370- Fix wrong multiplying BASE_FIG in precision calculation by
@tompng
in ruby/bigdecimal#372- Remove debug print by
@tompng
in ruby/bigdecimal#375- Remove unused #define macros by
@tompng
in ruby/bigdecimal#376- VpDivd bugfix by
@tompng
in ruby/bigdecimal#374- Fix VpDivd to fully use quotient array by
@tompng
in ruby/bigdecimal#377- Add RB_GC_GUARD to test-only methods by
@tompng
in ruby/bigdecimal#378- Use minimum necessary division precision in BigDecimal_DoDivmod by
@tompng
in ruby/bigdecimal#371- Remove dead code and ineffective optimization path form VpDivd by
@tompng
in ruby/bigdecimal#379- Implement exp, log, power and ** in ruby by
@tompng
in ruby/bigdecimal#347- Remove unused "# define" macros by
@tompng
in ruby/bigdecimal#382- Bump step-security/harden-runner from 2.12.2 to 2.13.0 by
@dependabot
[bot] in ruby/bigdecimal#383- VpFormatSt O(n^2) to O(n) by
@tompng
in ruby/bigdecimal#384- Ignore ndigits passed to BigDecimal(string, ndigits) by
@tompng
in ruby/bigdecimal#385- Better error message for negative**intinite and zero-converge case fix by
@tompng
in ruby/bigdecimal#386- Refactor truncate floor and ceil duplicated part by
@tompng
in ruby/bigdecimal#387- Fix exp log power to raise "Computation results in Infinity/NaN" in EXCEPTION_INFINITY/EXCEPTION_NaN mode by
@tompng
in ruby/bigdecimal#389- Reduce guard obj by
@tompng
in ruby/bigdecimal#390- Remove ENTER and GUARD_OBJ macro by
@tompng
in ruby/bigdecimal#391- Coerce to bigdecimal refactor by
@tompng
in ruby/bigdecimal#392- Coerce rational with the given prec in exp, log and power calculation by
@tompng
in ruby/bigdecimal#393- Unify coerce prec calculation by
@tompng
in ruby/bigdecimal#394- Use bool instead of Qtrue/Qfalse for normal c boolish value by
@tompng
in ruby/bigdecimal#395- Fix adjusting x to 0.3..3 in log calculation by
@tompng
in ruby/bigdecimal#397- missing.h cleanup by
@tompng
in ruby/bigdecimal#396- Hide internal method of BigMath into BigDecimal::Internal by
@tompng
in ruby/bigdecimal#400- Remove gc_compaction test by
@tompng
in ruby/bigdecimal#401
... (truncated)
Commits
dd7738c
Bump version to 3.2.3 (#419)b458f94
Add JRuby minimum ci (#418)6177f46
In JRuby, don't add sqrt, exp, log, power implemented in ruby (#417)b946e79
Implement BigDecimal#_decimal_shift for internal use (#324)6253bef
Update bigdecimal version used in benchmark from 3.0.0 to 3.1.1 (#416)3d8b9be
Rewrite BigDecimal#sqrt in ruby with improved Newton's method (#381)99cc2d5
Add BigMath::E and BigMath::PI precision test (#414)4fe723c
Simplify to_i logic (#413)f6bfd2f
Calculate exp, log, pow with the given prec even if prec limit is set (#411)c18bacb
Fixx / y
precision when prec limit is huge (#412)- Additional commits viewable in compare view
Updates mime-types-data
from 3.2025.0826 to 3.2025.0902
Changelog
Sourced from mime-types-data's changelog.
3.2025.0902 / 2025-09-02
- Updated registry entries from the IANA [media registry][registry] and [provisional media registry][provisional], the [Apache httpd media registry][httpd], and the [Apache Tika media registry][tika] as of the release date.
Commits
7f4fc53
Update mime-types-data 3.2025.0902 / 2025-09-02- See full diff in compare view
Updates rexml
from 3.4.2 to 3.4.3
Release notes
Sourced from rexml's releases.
REXML 3.4.3 - 2025-09-07
Improvement
- Reject no root element XML as an invalid XML
Fixes
- Fixed an issue with
IOSource#read_until
when reaching the end of a fileThanks
NAITOH Jun
Sutou Kouhei
Jason Thomas
Changelog
Sourced from rexml's changelog.
3.4.3 - 2025-09-07 {#version-3-4-3}
Improvement
- Reject no root element XML as an invalid XML
Fixes
- Fixed an issue with
IOSource#read_until
when reaching the end of a fileThanks
NAITOH Jun
Sutou Kouhei
Jason Thomas
Commits
822530c
Add 3.4.3 entry (#293)6ba286c
Reject no root element XML as an invalid XML (#291)b5b148e
The Zlib::GzipReader in JRuby does not behave as expected with REXML, so the ...1531862
Fixed an issue withIOSource#read_until
when reaching the end of a file (#288)185bdc7
Bump version- See full diff in compare view
Updates sass-embedded
from 1.91.0 to 1.92.1
Commits
b2a9ad5
v1.92.13e8f501
Bump sass from 1.92.0 to 1.92.1 in /ext/sass (#330)99bafb4
v1.92.071220e4
Bump sass from 1.91.0 to 1.92.0 in /ext/sass (#329)fa90898
Update rubocop-rspec requirement from ~> 3.6.0 to ~> 3.7.0 (#328)e0d6701
Test jruby-9 on windows-11-arma550df7
Bump actions/attest-build-provenance from 2 to 3 (#327)- See full diff 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 <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
Pull Request Statistics
1
1
+7
-7
Package Dependencies
mime-types-data
rubygems
3.2025.0826 → 3.2025.0902
Patch
Technical Details
ID: | 7172669 |
UUID: | 2807106253 |
Node ID: | PR_kwDOEGmOXM6nUQrN |
Host: | GitHub |
Repository: | html2rss/html2rss.github.io |
Merge State: | Unknown |