chore(deps): bump the dependencies group across 1 directory with 7 updates
Updates the requirements on rdoc, asciidoctor, rake, rexml, nokogiri, minitest and github-linguist to permit the latest version.
Updates rdoc from 6.13.1 to 6.15.0
Release notes
Sourced from rdoc's releases.
v6.15.0
What's Changed
✨ Enhancements
- Allow rdoc-ref to link to non-text files by
@jeremyevansin ruby/rdoc#1376- Search automatically on ?q= URL query parameter by
@jhawthornin ruby/rdoc#1396🐛 Bug Fixes
- searcher.js: Escape characters when building regexps by
@byrootin ruby/rdoc#1397- Fix backslash handling in table cell code spans by
@st0012in ruby/rdoc#1400- Fix incorrect method linking in
tttags by@st0012in ruby/rdoc#1427- Preserve inline styling inside tidy link labels by
@st0012in ruby/rdoc#1428📚 Documentation
- [DOC] Fix link by
@BurdetteLamarin ruby/rdoc#1393- [DOC] Fix
warn_missing_rdoc_refdefault value in doc by@st0012in ruby/rdoc#1408- [DOC] Correct levels of headings by
@BurdetteLamarin ruby/rdoc#1412- [DOC] Tweaks for markup reference intro by
@BurdetteLamarin ruby/rdoc#1411- [DOC] Re-format section Directives by
@BurdetteLamarin ruby/rdoc#1418- Migrate README to markdown by
@st0012in ruby/rdoc#1422🛠 Other Changes
- Remove "poeple" typo and reword for clarity by
@p8in ruby/rdoc#1388- Bump step-security/harden-runner from 2.12.2 to 2.13.0 by
@dependabot[bot] in ruby/rdoc#1392- Escape unescaped backslash at the end of code by
@nobuin ruby/rdoc#1404- Bump actions/download-artifact from 4 to 5 by
@dependabot[bot] in ruby/rdoc#1406- Bump actions/checkout from 4 to 5 by
@dependabot[bot] in ruby/rdoc#1407- Revert "Shorten the description text to get rid of JRuby exception" by
@nobuin ruby/rdoc#1401- Trim even spaces only in code by
@nobuin ruby/rdoc#1405- Commit generated files by
@st0012in ruby/rdoc#1410- Bump actions/upload-pages-artifact from 3 to 4 by
@dependabot[bot] in ruby/rdoc#1415- Bump actions/github-script from 7 to 8 by
@dependabot[bot] in ruby/rdoc#1423- Change error message assertion to make it pass in JRuby by
@tompngin ruby/rdoc#1425- Bump step-security/harden-runner from 2.13.0 to 2.13.1 by
@dependabot[bot] in ruby/rdoc#1426- Fix warnings by
@nobuin ruby/rdoc#1409- Bump version to 6.15.0 by
@st0012in ruby/rdoc#1429New Contributors
@byrootmade their first contribution in ruby/rdoc#1397@jhawthornmade their first contribution in ruby/rdoc#1396Full Changelog: https://github.com/ruby/rdoc/compare/v6.14.2...v6.15.0
v6.14.2
What's Changed
🐛 Bug Fixes
- Support markdown syntax in table cells by
@st0012in ruby/rdoc#1386🛠 Other Changes
- Fixup to usage of cgi/escape for Windows CI by
@hsbtin ruby/rdoc#1378- Added gemspec file to gem package by
@hsbtin ruby/rdoc#1379
... (truncated)
Commits
c33d173Bump version to 6.15.0 (#1429)6b6033bPreserve inline styling inside tidy link labels (#1428)e0051beFix incorrect method linking intttags (#1427)88db613Fix warnings (#1409)b726485Bump step-security/harden-runner from 2.13.0 to 2.13.1 (#1426)71d4090Change error message assertion to make it pass in JRuby (#1425)2308312Migrate README to markdown (#1422)1e4573bBump actions/github-script from 7 to 8 (#1423)e2dec09[DOC] Re-format section Directives (#1418)f2fefe0[DOC] Tweaks for markup reference intro (#1411)- Additional commits viewable in compare view
Updates asciidoctor from 2.0.23 to 2.0.25
Release notes
Sourced from asciidoctor's releases.
v2.0.25
This is a patch release in the 2.0.x release line to fix bugs, address compatibility issues, and fix a minor annoyance.
If any custom block macros are registered, and the log level is debug, the processor will no longer log a false positive statement that certain lines contain an unknown block macro. When
sectlinksis enabled, the link will not enclose any supplemental anchors on the section title, but only the text that follows.In terms of AsciiDoc compliance, the trailing space after the reftext of an inline anchor defined using the inline anchor shorthand is now removed to allow the reftext to end with
].And about that minor annoyance, the processor no longer freezes the processor instance of an extension, making it possible for the processor to use its own instance variables.
Distribution
Asciidoctor is also packaged for Fedora, Debian, Ubuntu, Alpine Linux, OpenSUSE, and Homebrew. You can use the system's package manager to install the package named asciidoctor.
Changelog
Improvements
- Don't freeze processor instance of extension to allow use of instance variables (#4782)
Bug Fixes
- Fix false positive when looking for custom block macro, leading to superfluous debug message (#4785)
- Start sectlink after any supplemental anchors on section title when sectlinks is set (#2934)
- Remove trailing space after reftext in inline anchor shorthand (to accomodate trailing
]in reftext) (#4789)Release meta
Released on: 2025-10-16 Released by:
@mojavelinuxRelease beer: Oktoberfest by Athletic Brewing CompanyLogs: resolved issues | source diff | gem diff
Credits
A very special thanks to all the awesome supporters of the Asciidoctor OpenCollective campaign, who provide critical funding for the ongoing development of this project.
v2.0.24
This is a patch release in the 2.0.x release line to fix bugs and address compatibility and compliance issues.
After upgrading, you'll no longer see the warning about the use of the logger gem when using Ruby 3.4. This is only a short-term solution for Ruby 3.4 and will need to be permanently fixed in a future release for Ruby 3.5. On the topic of logging, an error is now logged if an unterminated preprocessor conditional directive is detected. If the
sourcemapoption is enabled on the processor, the message will identify the file and line where the conditional started. (This change also allowed us to uncover cases when the conditional stack was incorrect). If you are extending AsciidoctorLoggerclass to implement a custom logger, all kwargs are now passed to the superclass correctly.If you're converting to DocBook, you will notice that the link attribute on an inline image is supported (but not yet for a block image). For reproducible builds, the
SOURCE_DATE_EPOCHenvironment variable is now ignored if empty.If you're writing a converter from scratch, you'll find the documentation on how to get started to be much more helpful. You'll also appreciate the fact that the converter will not crash if you're missing a convert handler for a node when extending the base converter.
When using the verse block, you'll notice that the
codetag no longer displays as a block.
... (truncated)
Changelog
Sourced from asciidoctor's changelog.
== 2.0.25 (2025-10-16) -
@mojavelinuxImprovements::
- Don't freeze processor instance of extension to allow use of instance variables (#4782)
Bug Fixes::
- Fix false positive when looking for custom block macro, leading to superfluous debug message (#4785)
- Start sectlink after any supplemental anchors on section title when sectlinks is set (#2934)
- Remove trailing space after reftext in inline anchor shorthand (to accomodate trailing
]in reftext) (#4789)=== Details
{url-repo}/releases/tag/v2.0.25[git tag] | {url-repo}/compare/v2.0.24...v2.0.25[full diff] // end::compact[]
== 2.0.24 (2025-10-13) -
@mojavelinuxCompliance::
- Support link attribute on inline image macro when converting to DocBook (#4385)
- Add magic comment
backticks_javascript: trueto achieve compatibility with Opal 2.0 (#4775) (@janbiedermann)- Extract the require logic of the OpenURI library for Asciidoctor.js compatibility (#4244) (
@ggrossetie)Improvements::
- Suppress warning about loading logger from stdlib when using Ruby 3.4 (#4769)
- Log error if unterminated preprocessor conditional directive is detected (#3545)
- Coerce names passed to the
positional_attrsdirective on an extension to strings (#4674)- Ignore
SOURCE_DATE_EPOCHenvironment variable if value is empty instead of exiting with non-zero exit code (#4631)- Change Brazilian Portuguese translation for toc-title (#4653) (
@giflw)Bug Fixes::
- Consider
convert_prefix when looking for missing convert method in converter (#4669) (@eugoka)- Pass kwargs to Logger superclass and only assign defaults when kwarg is not specified (#4773)
- Set logdev to $stderr if no arguments are passed to Logger constructor (#4250)
- Don't push conditional onto stack if conditional preprocessor directive is invalid when skipping lines (#4603)
- Only style code tag as block element when inside pre in listing block; not inside verse block (#4610)
- Don't add role=include to link macro that replaces include directive when running in compat mode (#4608)
Documentation::
- Rewrite documentation for how to create a custom converter from scratch and make examples more thorough (#4699)
Build / Infrastructure::
... (truncated)
Commits
96fc831release 2.0.25564b4b0backport fix for #4789 remove trailing space after reftext in inline anchor s...998d86cbackport fix for #2934 start sectlink after any supplemental anchors on secti...bafe3e8backport fix for #4782 don't freeze processor instance of extension to allow ...ce7a971remove duplication when adding processor extension9a621beresolves #4785 fix false positive when looking for custom block macro (PR #4786)acef385reorder some CHANGELOG entriesd631e3aadd tip for how to add state to extension instance despite it being frozen2154973prepare branch for development [no ci]a66b614release 2.0.24- Additional commits viewable in compare view
Updates rake from 13.2.1 to 13.3.0
Commits
0fdacefBump rake to 13.3.0fcc1f86Merge pull request #515 from rgarner/task-arguments-deconstruct-keys8e917d9Merge pull request #609 from pvdb/fix_rubyrunner_require0378c45Merge pull request #627 from komagata/fix-rdoc-linkscff7664Pattern matching support for argumentsa4454e6Merge pull request #608 from pvdb/use_dir_home0b727e9Remove superfluous dependency requires (in tests)5367e5cMove dependency requires to RubyRunner file6ba4601Merge pull request #634 from ruby/trusted-publisher6b3daf8Enabled trusted publisher for rubygems.org- Additional commits viewable in compare view
Updates rexml from 3.4.2 to 3.4.4
Release notes
Sourced from rexml's releases.
REXML 3.4.4 - 2025-09-10
Improvement
- Accept
REXML::Document.new("")for backward compatibilityThanks
NAITOH Jun
Joe Rafaniello
REXML 3.4.3 - 2025-09-07
Improvement
- Reject no root element XML as an invalid XML
Fixes
- Fixed an issue with
IOSource#read_untilwhen reaching the end of a fileThanks
NAITOH Jun
Sutou Kouhei
Jason Thomas
Changelog
Sourced from rexml's changelog.
3.4.4 - 2025-09-10 {#version-3-4-4}
Improvement
- Accept
REXML::Document.new("")for backward compatibilityThanks
NAITOH Jun
Joe Rafaniello
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_untilwhen reaching the end of a fileThanks
NAITOH Jun
Sutou Kouhei
Jason Thomas
Commits
4f32ea3Add 3.4.4 entry (#297)37cde3fAcceptREXML::Document.new("")for backward compatibility (#295)4ffe211Bump version822530cAdd 3.4.3 entry (#293)6ba286cReject no root element XML as an invalid XML (#291)b5b148eThe Zlib::GzipReader in JRuby does not behave as expected with REXML, so the ...1531862Fixed an issue withIOSource#read_untilwhen reaching the end of a file (#288)185bdc7Bump version- See full diff in compare view
Updates nokogiri from 1.18.9 to 1.18.10
Release notes
Sourced from nokogiri's releases.
v1.18.10 / 2025-09-15
Dependencies
- [CRuby] Vendored libxml2 is updated to v2.13.9. Note that the security fixes published in v2.13.9 were already present in Nokogiri v1.18.9.
- [CRuby] [Windows and MacOS] Vendored libiconv is updated to v1.18
7fb87235d729c74a2be635376d82b1d459230cc17c50300f8e4fcaabc6195344 nokogiri-1.18.10-aarch64-linux-gnu.gem 7e74e58314297cc8a8f1b533f7212d1999dbe2639a9ee6d97b483ea2acc18944 nokogiri-1.18.10-aarch64-linux-musl.gem 51f4f25ab5d5ba1012d6b16aad96b840a10b067b93f35af6a55a2c104a7ee322 nokogiri-1.18.10-arm-linux-gnu.gem 1c6ea754e51cecc85c30ee8ab1e6aa4ce6b6e134d01717e9290e79374a9e00aa nokogiri-1.18.10-arm-linux-musl.gem c2b0de30770f50b92c9323fa34a4e1cf5a0af322afcacd239cd66ee1c1b22c85 nokogiri-1.18.10-arm64-darwin.gem cd431a09c45d84a2f870ba0b7e8f571199b3727d530f2b4888a73639f76510b5 nokogiri-1.18.10-java.gem 64f40d4a41af9f7f83a4e236ad0cf8cca621b97e31f727b1bebdae565a653104 nokogiri-1.18.10-x64-mingw-ucrt.gem 536e74bed6db2b5076769cab5e5f5af0cd1dccbbd75f1b3e1fa69d1f5c2d79e2 nokogiri-1.18.10-x86_64-darwin.gem ff5ba26ba2dbce5c04b9ea200777fd225061d7a3930548806f31db907e500f72 nokogiri-1.18.10-x86_64-linux-gnu.gem 0651fccf8c2ebbc2475c8b1dfd7ccac3a0a6d09f8a41b72db8c21808cb483385 nokogiri-1.18.10-x86_64-linux-musl.gem d5cc0731008aa3b3a87b361203ea3d19b2069628cb55e46ac7d84a0445e69cc1 nokogiri-1.18.10.gem
Commits
6803740version bump to v1.18.1093337dedep: bump vendored libxml2 to v2.13.9 (#3555)15dde17ci: work around repeated bundler deadlocks9906071dep: bump vendored libxml2 to v2.13.9adf72e3[v1.18.x] backport libiconv upgrade to v1.18 (#3550)92cab09dep: update vendored libiconv to 1.18f1c5ea8Use mirror site to download libiconvdcd2721ci: stop testing Ruby 3.1 windows source buildscf856e6ci: fix the aarch64 segfault by using a more modern qemu6d77443Fix errors building Ruby 3.1 on windows- Additional commits viewable in compare view
Updates minitest from 5.25.5 to 5.26.0
Changelog
Sourced from minitest's changelog.
=== 5.26.0 / 2025-10-07
The Seattle.rb Nerd Party, Slightly Tipsy Edition!
2 minor enhancements:
- Added extra documentation to Minitest::TestTask options.
- Make parallelize_me! a no-op when n_threads=1.
9 bug fixes:
- Bypass parallel_executor entirely when n_threads=1.
- Don't require rubygems in Rakefile... it is 2025.
- Ensure that minitest exits non-zero on Interrupt. (tavianator)
- Fix Minitest.run sequence rdoc to include loop vars and read consistently.
- Fix call to parallel_executor.shutdown when it isn't defined.
- Removed some 1.8/1.9-based code from the assertions and expectations.
- Still fighting with rdoc? Yup. Still fighting with rdoc...
- Switched assert_equal's diff from Tempfile.open to Tempfile.create.
- Use Regexp.escape for BASE_RE in case pwd has special chars. (astra_1993)
Commits
f78aa72prepped for release5faf12f- Use Regexp.escape for BASE_RE in case pwd has special chars. (astra_1993)839c5f0- Bypass parallel_executor entirely when n_threads=1.7c90742- Switched assert_equal's diff from Tempfile.open to Tempfile.create.b3dcd38clarify an assert_equal + newline + backslash n test output to be more readable14c87efImprove let tests to no longer be order dependent.6c995cf- Ensure that minitest exits non-zero on Interrupt. (tavianator)42ce806- Removed some 1.8/1.9-based code from the assertions and expectations.a17393e- Still fighting with rdoc? Yup. Still fighting with rdoc...68b3d0c- Don't require rubygems in Rakefile... it is 2025.- Additional commits viewable in compare view
Updates github-linguist from 9.1.0 to 9.3.0
Release notes
Sourced from github-linguist's releases.
v9.3.0
What's Changed
- Added Nickel language by
@mkatychevin github-linguist/linguist#7432- Add strategy that was used to detect the file's language by
@DecimalTurnin github-linguist/linguist#7405- Tweaked tree-sitter query classification by
@mkatychevin github-linguist/linguist#7431- Replace grammar for Slim by
@Jeremy-Waltonin github-linguist/linguist#7465- Add
.swigand.swgextension to SWIG by@Mizuxin github-linguist/linguist#7480- Make use of additional editor modes by
@Alhadisin github-linguist/linguist#7494- Replace Vanish and Nginx grammars by
@lildudein github-linguist/linguist#7524- Add C3 by
@rudywasfoundin github-linguist/linguist#7525- Add ROS Interface by
@jtbandesin github-linguist/linguist#7523- Rewrite and reformat documentation of
languages.ymlby@Alhadisin github-linguist/linguist#7495- Update VHDL syntax by
@jevogelin github-linguist/linguist#7508- Improve recognizing generated Dart files by
@marvin-koljain github-linguist/linguist#7448- Add language QuakeC by
@4LTin github-linguist/linguist#7545- Add Cooklang by
@dubadubin github-linguist/linguist#7497- Add
.toml.exampleextension by@spenserblackin github-linguist/linguist#7478- Add .env.template as Dotenv filename by
@starwarswiiin github-linguist/linguist#7557- Add sample for
*.tomlextension by@spenserblackin github-linguist/linguist#7570- Add
.ftlhextension to Freemarker by@tajakobsenin github-linguist/linguist#7551- Add KoLMafia ASH language by
@midgleycin github-linguist/linguist#5401- Add Flix language by
@sockmaster27in github-linguist/linguist#7010- Add support for Bru (Bruno Markup Language) by
@ludovicobesanain github-linguist/linguist#7560New Contributors
@Jeremy-Waltonmade their first contribution in github-linguist/linguist#7465@Mizuxmade their first contribution in github-linguist/linguist#7480@rudywasfoundmade their first contribution in github-linguist/linguist#7525@jevogelmade their first contribution in github-linguist/linguist#7508@marvin-koljamade their first contribution in github-linguist/linguist#7448@4LTmade their first contribution in github-linguist/linguist#7545@dubadubmade their first contribution in github-linguist/linguist#7497@starwarswiimade their first contribution in github-linguist/linguist#7557@tajakobsenmade their first contribution in github-linguist/linguist#7551@midgleycmade their first contribution in github-linguist/linguist#5401@sockmaster27made their first contribution in github-linguist/linguist#7010@ludovicobesanamade their first contribution in github-linguist/linguist#7560Full Changelog: https://github.com/github-linguist/linguist/compare/v9.2.0...v9.3.0
v9.2.0
What's Changed
- Correct command name in
github-linguistusage by@zyoshokain github-linguist/linguist#7286- Update licensed dependency version by
@lildudein github-linguist/linguist#7319- Add KiCAD symbols by
@stonedDiscordin github-linguist/linguist#7301- Add support for Sail by
@Timmmmin github-linguist/linguist#7339- Coq has been renamed into the Rocq Prover. by
@Zimmi48in github-linguist/linguist#7297- Add Koka by
@toh995in github-linguist/linguist#7320- Add HIP language support by
@Young-TWin github-linguist/linguist#7334
... (truncated)
Commits
f101af5Release v9.3.0 (#7586)94436d2Add support for Bru (Bruno Markup Language) (#7560)168940dAdd Flix language (#7010)83805adAdd KoLMafia ASH language (#5401)f8e59e5Add.ftlhextension to Freemarker (#7551)78c216aAdd sample for*.tomlextension (#7570)a8612a3Add .env.template as Dotenv filename (#7557)1ec0deaAdd.toml.exampleextension (#7478)2744e79Add Cooklang (#7497)6cff403Improve recognizing generated Dart files (#7448)- 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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