Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 7, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence Type Update
@vitejs/plugin-vue (source) 6.0.16.0.3 age confidence devDependencies patch
annotate 2.6.52.7.5 age confidence minor
bcrypt_pbkdf 1.1.11.1.2 age confidence patch
bootsnap (changelog) 1.18.61.20.1 age confidence minor
cimg/ruby 3.4.7-browsers3.4.8-browsers age confidence docker patch
datatables.net-bs4 (source) 2.3.42.3.6 age confidence dependencies patch
dotenv-rails (changelog) 3.1.83.2.0 age confidence minor
honeybadger (source, changelog) 6.1.36.2.0 age confidence minor
net-imap (changelog) 0.5.120.6.2 age confidence minor
pg (changelog) 1.6.21.6.3 age confidence patch
ruby (source) 3.4.73.4.8 age confidence patch
ruby 3.4.7-slim3.4.8-slim age confidence final patch
sass 1.93.31.97.2 age confidence dependencies minor
selenium-webdriver (source, changelog) 4.38.04.39.0 age confidence minor
simple_form (changelog) 5.4.05.4.1 age confidence patch
solargraph (source, changelog) 0.48.00.58.1 age confidence minor
sqlite3 (changelog) 2.8.0-aarch64-linux-gnu2.9.0 age confidence minor
vite-plugin-ruby (source) 5.1.15.1.2 age confidence devDependencies patch
vite_rails (source, changelog) 3.0.193.0.20 age confidence patch
vue (source) 3.5.233.5.26 age confidence dependencies patch

Release Notes

vitejs/vite-plugin-vue (@​vitejs/plugin-vue)

v6.0.3

Features
Bug Fixes
Performance Improvements
Miscellaneous Chores

v6.0.2

Bug Fixes
Miscellaneous Chores
ctran/annotate_models (annotate)

v2.7.5

Compare Source

See https://github.com/ctran/annotate_models/releases/tag/v2.7.5

v2.7.4

Compare Source

  • Fix with_comment format in annotate_models_rake #​560

v2.7.3

Compare Source

See https://github.com/ctran/annotate_models/releases/tag/v2.7.3

v2.7.2

Compare Source

See https://github.com/ctran/annotate_models/releases/tag/v2.7.2

v2.7.1

Compare Source

See https://github.com/ctran/annotate_models/releases/tag/v2.7.1

v2.7.0

Compare Source

See https://github.com/ctran/annotate_models/releases/tag/v2.7.0

v2.6.10: Revert incompatible change

Compare Source

Revert "Prefer SQL column type over normalized AR type"

v2.6.9

Compare Source

  • Support foreigh key #​241
  • Check if model has skip tag in annotate_model_file #​167
  • Fix issue where serializer-related flags weren't being honored #​246
  • Prefer SQL column type over normalized AR type #​231

v2.6.8

Compare Source

  • Nothing annotated unless options[:model_dir] is specified, #​234

v2.6.7

Compare Source

  • Nothing annotated unless options[:model_dir] is specified, #​234

v2.6.6

Compare Source

  • Makes it possible to wrap annotations, #​225
  • Fix single model generation, #​214
  • Fix default value for Rails 4.2, #​212
  • Don't crash on inherited models in subdirectories, #​232
  • Process model_dir in rake task, #​197
net-ssh/bcrypt_pbkdf-ruby (bcrypt_pbkdf)

v1.1.2

Compare Source

rails/bootsnap (bootsnap)

v1.20.1

Compare Source

  • Handle broken symlinks in load path scanning code.
    Should fix Errno::ENOENT fstatat issues some users have encountered after upgrading to 1.20.0.

v1.20.0

Compare Source

  • Optimized load path scanning with a C extension. Should be about 2x faster on supported platforms.

v1.19.0

Compare Source

  • Remove JSON parsing cache. Recent versions of the json gem are as fast as msgpack if not faster.
DataTables/Dist-DataTables-Bootstrap4 (datatables.net-bs4)

v2.3.6

Compare Source

v2.3.5

Compare Source

bkeepers/dotenv (dotenv-rails)

v3.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: bkeepers/dotenv@v3.1.8...v3.2.0

honeybadger-io/honeybadger-ruby (honeybadger)

v6.2.0

Compare Source

Features
Bug Fixes
ruby/net-imap (net-imap)

v0.6.2

Compare Source

What's Changed

Fixed

Full Changelog: ruby/net-imap@v0.6.1...v0.6.2

v0.6.1

Compare Source

What's Changed

Fixed
Miscellaneous

Full Changelog: ruby/net-imap@v0.6.0...v0.6.1

v0.6.0

Compare Source

What's Changed

Breaking Changes
  • 🔧 Update default config for v0.6 by @​nevans in #​539
    • responses_without_block changed from :warn to :frozen_dup
    • parser_use_deprecated_uidplus_data changed from :up_to_max_size to false (and is deprecated)
    • parser_max_deprecated_uidplus_data_size changed from 100 to 0 (and is deprecated)
  • 🔥 Use psych (>= 5.2.5) for encoding Data objects by @​nevans in #​543
    This changes the YAML tag for Data subclasses from ruby/object:Net::IMAP::DataSubclass to ruby/data:Net::IMAP::DataSubclass. YAML dumped by earlier net-imap versions may not load correctly. Psych >= 5.2.5 is required to dump these objects correctly.
  • 💥 Require ruby >= 3.2 (drop support for 3.1) by @​nevans in #​538
  • 💥✨ Change SequenceSet#size to count * and repeated numbers by @​nevans in #​564
    SequenceSet is used to represent both sorted sets and ordered lists (which may contain duplicates). Members are non-zero UInt32 numbers, but "*" has special meaning as "the number corresponding to the last mailbox entry". So there are four different ways to count the members of a SequenceSet.
    Previously, #size was an alias for #count. Now it differs in both relevant aspects.
    * is a unique member * is treated like 2³² - 1
    distinct set members #cardinality #count
    ordered list, including duplicates #size #count_with_duplicates
  • 🔥 Remove deprecated UIDPlusData class by @​nevans in #​540
    UIDPlusData was deprecated by v0.5.6. AppendUIDData or CopyUIDData will always be returned instead.
  • 🔥 Delete deprecated MessageSet by @​nevans in #​573
    MessageSet was deprecated by v0.5.0. Use SequenceSet instead.
  • 💥 Do not include OpenSSL and OpenSSL::SSL modules into Net::IMAP by @​nevans in #​533
    This only affects the ability to use OpenSSL constants from the Net::IMAP namespace.
  • 💥 Don't set verify_callback to VerifyCallbackProc by @​nevans in #​534
    This functionality was never documented and is redundant with the verify_callback option.
Deprecated
  • Deprecated config options for UIDPlusData in #​540
    The parser_use_deprecated_uidplus_data and parser_max_deprecated_uidplus_data_size config options will be removed in v0.7.0. They are kept for backward compatibility, but they do not affect response parser results. When parser_use_deprecated_uidplus_data is changed from the default value (false), deprecation warnings are printed when parsing APPENDUID or COPYUID response codes.
Added
Documentation
Other Changes
  • 🔥 Drop Data polyfill by @​nevans in #​541
    This was only used for ruby 3.1, which is no longer supported. So this is not considered a breaking change.
  • ♻️ Refactor Config.versioned_defaults to reduce merge conflcts by @​nevans in #​544
  • Improved Net::IMAP::SequenceSet performance
Miscellaneous

Full Changelog: ruby/net-imap@v0.5.12...v0.6.0

v0.5.13

Compare Source

What's Changed

Fixed
Documentation
Other Changes
  • ♻️ Refactor Config.versioned_defaults to reduce merge conflicts (backport to 0.5) by @​nevans in #​584
Miscellaneous

Full Changelog: ruby/net-imap@v0.5.12...v0.5.13

ged/ruby-pg (pg)

v1.6.3

Compare Source

Added:

  • Add binary gems for ruby-4.0, now providing ruby-3.0 to 4.0. #​682
  • Update fat binary gem to OpenSSL-3.6.0 and PostgreSQL-18.1.
  • Improve documentation of PG::Result and README. #​676
  • Update errorcodes to PostgreSQL-18.
  • Use rb_hash_new_capa on Ruby-3.2+ . #​674
  • Deny any server communication on a frozen PG::Connection . #​677
  • Fix possible race condition in PG::Result in Ractor context. #​674

Removed:

  • Drop binary gem support for platform x86-mingw32. #​682
  • Drop binary gems for ruby-2.7.
sass/dart-sass (sass)

v1.97.2

Compare Source

  • Additional fixes for implicit configuration when nested imports are involved.

v1.97.1

Compare Source

v1.97.0

Compare Source

  • Add support for the display-p3-linear color space.

v1.96.0

Compare Source

  • Allow numbers with complex units (more than one numerator unit or more than
    zero denominator units) to be emitted to CSS. These are now emitted as
    calc() expressions, which now support complex units in plain CSS.

v1.95.1

Compare Source

  • No user-visible changes.

v1.95.0

Compare Source

  • Add support for the CSS-style if() function. In addition to supporting the
    plain CSS syntax, this also supports a sass() query that takes a Sass
    expression that evaluates to true or false at preprocessing time depending
    on whether the Sass value is truthy. If there are no plain-CSS queries, the
    function will return the first value whose query returns true during
    preprocessing. For example, if(sass(false): 1; sass(true): 2; else: 3)
    returns 2.

  • The old Sass if() syntax is now deprecated. Users are encouraged to migrate
    to the new CSS syntax. if($condition, $if-true, $if-false) can be changed to
    if(sass($condition): $if-true; else: $if-false).

    See the Sass website for details.

  • Plain-CSS if() functions are now considered "special numbers", meaning that
    they can be used in place of arguments to CSS color functions.

  • Plain-CSS if() functions and attr() functions are now considered "special
    variable strings" (like var()), meaning they can now be used in place of
    multiple arguments or syntax fragments in various CSS functions.

v1.94.3

Compare Source

  • Fix the span reported for standalone % expressions followed by whitespace.

v1.94.2

Compare Source

Command-Line Interface
  • Using --fatal-deprecation <version> no longer emits warnings about
    deprecations that are obsolete.
Dart API
  • Deprecation.forVersion now excludes obsolete deprecations from the set it
    returns.
JS API
  • Excludes obsolete deprecations from fatalDeprecations when a Version is
    passed.
Node.js Embedded Host
  • Fix a bug where a variable could be used before it was initialized during
    async compilation.

v1.94.1

Compare Source

  • No user-visible changes.

v1.94.0

Compare Source

  • Potentially breaking compatibility fix: @function rules whose names
    begin with -- are now parsed as unknown at-rules to support the plain CSS
    @function rule. Within this rule, the result property is parsed as raw
    CSS just like custom properties.

  • Potentially breaking compatibility fix: @mixin rules whose names begin
    with -- are now errors. These are not yet parsed as unknown at-rules because
    no browser currently supports CSS mixins.

SeleniumHQ/selenium (selenium-webdriver)

v4.39.0

Compare Source

=========================

  • Add CDP for Chrome 143 and remove 140
heartcombo/simple_form (simple_form)

v5.4.1

Compare Source

  • Ruby 4.0 support (no changes required)
  • Support procs on validators for minlength/maxlength, and improve validators logic across the board to match Rails #​1859
castwide/solargraph (solargraph)

v0.58.1

  • Normalize line endings to LF (#​1142)

v0.58.0

Compare Source

  • Faster constant resolution (#​1083)
  • [regression] Handle RBS static method aliases (#​1094)
  • More type fills and shims (#​1005)
  • Fix resolution in blocks in type checker (#​890)
  • Annotation fixes for strong typechecking (#​1057)
  • Remove dead code (#​1077)
  • Fix flakey spec (#​1080)
  • Fix bad sexpr generation in op_asgn (#​1089)
  • Opt-in for MFA requirement (#​730)
  • [regression] Fix resolution issues with namespaces from YARD (#​1097)
  • Improve a pin combination case around selfy types (#​1024)
  • Rescue reference errors in hosts (#​1105)
  • Relax bundler runtime dependency version constraint to support newer versions (#​1125)
  • Remove stale Pathname test (#​1135)
  • Enable strong type checking in CI (#​928)
  • Stale sg-ignore
  • Use rbs 3.9.5 in tests (#​1136)
  • Drop broken 'namespaces' method (#​1065)
  • Add ActiveRecord example from RBS (#​1074)
  • Keep workspace directories as absolute paths (#​1076)
  • Handle bad gem_dir from gemspec object (#​1079)
  • Test for absolute require paths (#​1137)
  • [regression] Fix resolution of ambiguous argument types (#​1098)
  • Remove sg-ignore for String#=~ (#​1138)
  • Allow levels to be changed for typechecking rules in .solargraph.yml (#​1126)

v0.57.0

Compare Source

  • Support ActiveSupport::Concern pattern for class methods (#​948)
  • More CI checks (#​996)
  • Linting / type annotation fixes (#​999)
  • Avoid overlapping chdir calls in multiple threads (#​1007)
  • Fix kwarg generation in ApiMap::SourceToYard (#​1003)
  • Enable Steep typechecking of Solargraph code (#​1004)
  • Fix convention requires (#​1008)
  • Plugin Util: Add Combination Priority (#​1010)
  • [regression] Fix crash while typechecking files with Struct use (#​1031)
  • Remove yard reference from gemfile (#​1033)
  • Allow newer RBS gem versions, exclude incompatible ones (#​995)
  • Look for external requires before cataloging bench (#​1021)
  • Remove Library#folding_ranges (#​904)
  • Complain in strong type-checking if an @​sg-ignore line is not needed (#​1011)
  • Document a log level env variable (#​894)
  • Fix hole in type checking evaluation (#​1009)
  • Improve typechecking error message (#​1014)
  • Internal strict type-checking fixes (#​1013)
  • Reproduce and fix a ||= (or-asgn) evaluation issue (#​1017)
  • Define closure for Pin::Symbol, for completeness (#​1027)
  • Fix 'all!' config to reporters (#​1018)
  • Fix DocMap.all_rbs_collection_gems_in_memory return type (#​1037)
  • Fix RuboCop linting errors in regular expressions (#​1038)
  • Resolve class aliases via Constant pins (#​1029)
  • Speed-up LSP completion response times (#​1035)
  • Revert "Resolve class aliases via Constant pins (#​1029)" (#​1041)
  • Avoid stack errors when resolving method aliases (#​1040)
  • [regression] Refine order of object convention method pins (#​1036)
  • Fix crash while generating activesupport pins (#​1043)
  • Type annotation improvements (#​1016)
  • Resolve class aliases via Constant pins (#​1048)
  • Understand "Parser::AST::Node < AST::Node" in RBS (#​1060)
  • Factor out require_paths logic to its own class (#​1062)
  • Fix type errors found in strong typechecking (#​1045)
  • Run plugin specs separately for perf insights (#​1046)
  • Run specs from solargraph-rails configured against current code in CI (#​892)
  • Fix Convention/Plugin pins not being updated on file change (#​1028)
  • Fix solargraph-rails check (#​1073)
  • Flow sensitive typing handles x.is_a? without an argument (#​1070)
  • Refactor reference pin handling (#​1058)

v0.56.2

Compare Source

  • Add support for Ruby Data.define (#​970)
  • Ensure that pin locations are always populated (#​965)
  • Improve struct support (#​992)
  • Include Rakefile, Gemfile, and gemspec files in config by default (#​984)
  • Use Open3 to cache gemspecs (#​1000)
  • Eager load node processors (#​1002)

v0.56.1

Compare Source

  • Library avoids blocking on pending yardoc caches (#​990)
  • DocMap checks for default Gemfile (#​989)
  • [Bug fix] Fixed an error in rbs/fills/tuple.rbs (#​993)

v0.56.0

Compare Source

  • [regression] Gem caching perf and logging fixes #​983

v0.55.5

Compare Source

  • Flatten results of DocMap external bundle query (#​981)
  • [breaking] Reimplement global conventions (#​877)
  • GemPins pin merging improvements (#​946)
  • Support class-scoped aliases and attributes from RBS (#​952)
  • Restructure ComplexType specs towards YARD doc compliance (#​969)
  • Use Prism (#​974)
  • Document pages (#​977)
  • Enable disabled-but-working specs (#​978)
  • Map RBS 'untyped' type (RBS::Types::Bases::Any) to 'undefined' (#​979)
  • Re-enable support for .gem_rbs_collection directories (#​942)
  • [breaking] Comply with YARD documentation on Hash tag format (#​968)
  • Ignore directory paths in Workspace#would_require? (#​988)

v0.55.4

Compare Source

  • Flatten results of DocMap external bundle query (#​981)

v0.55.3

Compare Source

  • Nil guards in flow-sensitive typing (patch release) (#​980)

v0.55.2

Compare Source

  • Require external bundle (#​972)

v0.55.1

Compare Source

  • Fix inline Struct definition (#​962)
  • Ensure DocMap requires bundler when loading gemspecs (#​963)
  • DelegatedMethod improvements (#​953)

[`v0.55.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 was generated by Mend Renovate. View the repository job log.

@github-actions
Copy link

github-actions bot commented Nov 7, 2025

Container Scanning Status: ✅ Success


ghcr.io/pulibrary/abid:pr-266 (debian 13.2)
===========================================
Total: 0 (HIGH: 0, CRITICAL: 0)

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f944896 to a771184 Compare November 15, 2025 18:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from c9225a3 to dce551e Compare November 24, 2025 09:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from cb36605 to 351b2df Compare December 5, 2025 14:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 5a4cb2e to a7fb048 Compare December 12, 2025 10:09
tpendragon
tpendragon previously approved these changes Dec 12, 2025
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 0e0e58d to f3b07db Compare December 19, 2025 22:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 782a686 to 56fe97c Compare December 27, 2025 22:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 52b387b to a2f8893 Compare January 5, 2026 16:01
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a2f8893 to 74f4e39 Compare January 6, 2026 04:35
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants