chore(deps): bump the ruby group with 9 updates
Type: Pull Request
State: Merged
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 0
(4 months ago)
(4 months ago)
(4 months ago)
by mergify[bot]
dependencies ruby
Bumps the ruby group with 9 updates:
Package | From | To |
---|---|---|
html2rss | 1f0ac39 |
f4e080c |
rubocop | 1.75.7 |
1.75.8 |
base64 | 0.2.0 |
0.3.0 |
bigdecimal | 3.1.9 |
3.2.1 |
csv | 3.3.4 |
3.3.5 |
google-protobuf | 4.31.0 |
4.31.1 |
mime-types-data | 3.2025.0520 |
3.2025.0527 |
rake | 13.2.1 |
13.3.0 |
sass-embedded | 1.89.0 |
1.89.1 |
Updates html2rss
from 1f0ac39
to f4e080c
Commits
Updates rubocop
from 1.75.7 to 1.75.8
Release notes
Sourced from rubocop's releases.
RuboCop v1.75.8
Bug fixes
- #14191: Fix
Lint/FloatComparison
cop to detect floating-point number comparisons incase
statements. (@daisuke
)- #14209: Fix an error for
Style/RedundantFormat
with invalid format arguments. (@earlopain
)- #14200: Fix false positives for
Style/DefWithParentheses
when using endless method definition with empty parentheses and a space before=
. (@koic
)- #14197: Fix infinite loop error for
EnforcedStyle: with_fixed_indentation
ofLayout/ArgumentAlignment
andEnforcedStyle: consistent
ofLayout/FirstArgumentIndentation
andLayout/HashAlignment
. (@koic
)- #14204: Fix
Layout/EmptyLinesAroundAccessModifier
cop error on trailing access modifier. (@viralpraxis
)- #14198: Fix
Lint/DuplicateMethods
cop error onto
option is dynamically generated andprefix
is enabled. (@viralpraxis
)- #14199: Fix wrong autocorrection for
Style/MapToHash
with destructuring argument. (@lovro-bikic
)- #14050: Modify condition for
rubocop:todo
EOL comment. (@jonas054
)
Changelog
Sourced from rubocop's changelog.
1.75.8 (2025-05-28)
Bug fixes
- #14191: Fix
Lint/FloatComparison
cop to detect floating-point number comparisons incase
statements. ([@daisuke
][])- #14209: Fix an error for
Style/RedundantFormat
with invalid format arguments. ([@earlopain
][])- #14200: Fix false positives for
Style/DefWithParentheses
when using endless method definition with empty parentheses and a space before=
. ([@koic
][])- #14197: Fix infinite loop error for
EnforcedStyle: with_fixed_indentation
ofLayout/ArgumentAlignment
andEnforcedStyle: consistent
ofLayout/FirstArgumentIndentation
andLayout/HashAlignment
. ([@koic
][])- #14204: Fix
Layout/EmptyLinesAroundAccessModifier
cop error on trailing access modifier. ([@viralpraxis
][])- #14198: Fix
Lint/DuplicateMethods
cop error onto
option is dynamically generated andprefix
is enabled. ([@viralpraxis
][])- #14199: Fix wrong autocorrection for
Style/MapToHash
with destructuring argument. ([@lovro-bikic
][])- #14050: Modify condition for
rubocop:todo
EOL comment. ([@jonas054
][])
Commits
38333dc
Cut 1.75.86649f39
Update Changelogcfb0716
Fix wrong autocorrection for Style/MapToHash with destructuring argument81aab63
[Fix #14197] Fix infinite loop error forLayout/FirstArgumentIndentation
0258e0b
[Fix #13194] Detect case statement in FloatComparison (#14191)fb36825
Fix an error forStyle/RedundantFormat
with invalid format argumentsc72ae6d
Merge pull request #14208 from Earlopain/better-debug-errorsb3a47ca
Show better message on error with --debug080c909
[Fix #14050] Modify condition for EOL commentcdda4b2
Merge pull request #14203 from viralpraxis/fix-codespell-rake-task-when-not-f...- Additional commits viewable in compare view
Updates base64
from 0.2.0 to 0.3.0
Release notes
Sourced from base64's releases.
v0.3.0
What's Changed
- Provide a 'Changelog' link on rubygems.org/gems/base64 by
@mark-young-atg
in ruby/base64#18- Exclude older than 2.6 on macos-14 by
@nobu
in ruby/base64#21- Add RBS signature and testing by
@ksss
in ruby/base64#25- Enabled trusted publisher for rubygems.org by
@hsbt
in ruby/base64#29- [DOC] Tweaks for module Base64 by
@BurdetteLamar
in ruby/base64#23New Contributors
@mark-young-atg
made their first contribution in ruby/base64#18@nobu
made their first contribution in ruby/base64#21@ksss
made their first contribution in ruby/base64#25Full Changelog: https://github.com/ruby/base64/compare/v0.2.0...v0.3.0
Commits
c5d3c7f
v0.3.05f43831
[DOC] Tweaks for module Base64bb66095
Enabled trusted publisher for rubygems.orgcd65c10
Add RBS signature and testing (#25)e30df92
Update file list on gemspec9704a4c
Update license files same as ruby/ruby7ec2861
Merge pull request #21 from ruby/old-version-on-macos7ae5efd
Exclude older than 2.6 on macos-149669a7d
Merge pull request #18 from mark-young-atg/provide_changelog_link_on_rubygems7cab043
Provide a 'Changelog' link on rubygems.org/gems/base64- See full diff in compare view
Updates bigdecimal
from 3.1.9 to 3.2.1
Release notes
Sourced from bigdecimal's releases.
v3.2.1
What's Changed
- Enabled trusted publisher for rubygems.org by
@hsbt
in ruby/bigdecimal#333- Fix division precision limit by
@tompng
in ruby/bigdecimal#335Full Changelog: https://github.com/ruby/bigdecimal/compare/v3.2.0...v3.2.1
v3.2.0
What's Changed
- Fix spec NoMethodError message for .allocator on truffle Ruby by
@mrzasa
in ruby/bigdecimal#313- Remove outdated BigMath.atan document that refers to convergence by
@tompng
in ruby/bigdecimal#318- Add a precision assertion to BigMath test by
@tompng
in ruby/bigdecimal#316- Use
Ractor#value
asRactor#take
is removed by@ko1
in ruby/bigdecimal#327- Indent multiline call-seq comment by
@tompng
in ruby/bigdecimal#311- Integrate BigDecimal_div and BigDecimal_div2 by
@tompng
in ruby/bigdecimal#329- Fix division rounding by
@tompng
in ruby/bigdecimal#330New Contributors
@tompng
made their first contribution in ruby/bigdecimal#318@ko1
made their first contribution in ruby/bigdecimal#327Full Changelog: https://github.com/ruby/bigdecimal/compare/v3.1.9...v3.2.0
Commits
d6faddb
Bump version to 3.2.11cce03c
CHANGES: Add v3.2.1 entries64933d4
Merge pull request #335 from tompng/div_with_preclimit_fix5edc779
Apply preclimit in BigDecimal_div2 when specified prec is 0e0cb4a6
Enabled trusted publisher for rubygems.org (#333)b5611d7
Bump version to 3.2.0b295c49
Add dev:version:bump rake task5003f24
CHANGES: Add v3.2.0 entriesc216ed4
Fix division rounding (#330)1fa3eff
Integrate BigDecimal_div and BigDecimal_div2 (#329)- Additional commits viewable in compare view
Updates csv
from 3.3.4 to 3.3.5
Release notes
Sourced from csv's releases.
csv 3.3.5 - 2025-06-01
Improvements
- docs: Fixed
StringScanner
document URL.
- GH-343
- Patch by Petrik de Heus
Thanks
- Petrik de Heus
Changelog
Sourced from csv's changelog.
3.3.5 - 2025-06-01
Improvements
- docs: Fixed
StringScanner
document URL.
- GH-343
- Patch by Petrik de Heus
Thanks
- Petrik de Heus
Commits
Updates google-protobuf
from 4.31.0 to 4.31.1
Commits
f275995
Updating version.json and repo version numbers to: 31.1-dev- See full diff in compare view
Updates mime-types-data
from 3.2025.0520 to 3.2025.0527
Changelog
Sourced from mime-types-data's changelog.
3.2025.0527 / 2025-05-27
- 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
08d7ea2
Update mime-types-data 3.2025.0527 / 2025-05-274ddc200
chore(deps): Bump astral-sh/setup-uv from 6.0.1 to 6.1.05a4a4f8
chore(deps): Bump ruby/setup-ruby from 1.242.0 to 1.244.0- See full diff in compare view
Updates rake
from 13.2.1 to 13.3.0
Commits
0fdacef
Bump rake to 13.3.0fcc1f86
Merge pull request #515 from rgarner/task-arguments-deconstruct-keys8e917d9
Merge pull request #609 from pvdb/fix_rubyrunner_require0378c45
Merge pull request #627 from komagata/fix-rdoc-linkscff7664
Pattern matching support for argumentsa4454e6
Merge pull request #608 from pvdb/use_dir_home0b727e9
Remove superfluous dependency requires (in tests)5367e5c
Move dependency requires to RubyRunner file6ba4601
Merge pull request #634 from ruby/trusted-publisher6b3daf8
Enabled trusted publisher for rubygems.org- Additional commits viewable in compare view
Updates sass-embedded
from 1.89.0 to 1.89.1
Commits
e231a76
v1.89.192f771d
Bump sass from 1.89.0 to 1.89.1 in /ext/sass (#312)dec8e54
Drop ia32- 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
2
1
+11
-11
Package Dependencies
html2rss
rubygems
→ [rubocop](https://github.com/rubocop/rubocop)
`0.3.0`
rubygems
→ [bigdecimal](https://github.com/ruby/bigdecimal)
`3.3.5`
rubygems
→ [google-protobuf](https://github.com/protocolbuffers/protobuf)
`4.31.1`
rubygems
→ [mime-types-data](https://github.com/mime-types/mime-types-data)
`13.3.0`
rubygems
→ [sass-embedded](https://github.com/sass-contrib/sass-embedded-host-ruby)
Technical Details
ID: | 1216596 |
UUID: | 2559749012 |
Node ID: | PR_kwDOEGmOXM6YkquU |
Host: | GitHub |
Repository: | html2rss/html2rss.github.io |
Merge State: | Unknown |