Skip to content

Bump the patch-and-minor-dependencies group with 7 updates#178

Merged
simonneutert merged 1 commit intomainfrom
dependabot/bundler/patch-and-minor-dependencies-dda3aca745
Oct 1, 2025
Merged

Bump the patch-and-minor-dependencies group with 7 updates#178
simonneutert merged 1 commit intomainfrom
dependabot/bundler/patch-and-minor-dependencies-dda3aca745

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Oct 1, 2025

Bumps the patch-and-minor-dependencies group with 7 updates:

Package From To
pg 1.6.0 1.6.2
activerecord 8.0.2.1 8.0.3
activesupport 8.0.2.1 8.0.3
rack 3.2.0 3.2.1
sass-embedded 1.89.2 1.93.2
rubocop 1.79.1 1.81.1
solargraph 0.56.2 0.57.0

Updates pg from 1.6.0 to 1.6.2

Changelog

Sourced from pg's changelog.

v1.6.2 [2025-09-02] Lars Kanis lars@greiz-reinsdorf.de

  • Remove several absolute paths from native binaries which pointed to build directories. #668
  • Fix bad fallback path to pg_service.conf. #666
  • Use rbpg_ prefix for base64_* functions to avoid name clashes with functions provided by other libraries like Heimdal on Macos. #667
  • Raise a more descriptive error message in case of pg_ext LoadError. #664
  • Freeze some constants to make them available in a Ractor context. #660
  • Several documentation improvements.
  • Update native binary gems to OpenSSL-3.5.2, krb5-1.22.1 and PostgreSQL-17.6.

v1.6.1 [2025-08-03] Lars Kanis lars@greiz-reinsdorf.de

  • Add binary gems for platforms aarch64-linux-musl and x86_64-linux-musl without the need to install package gcompat. #657.
  • Serialize CompositeCoder#dimensions only when set. #652 This fixes the compatibility to pg-1.5.9, when deserializing Marshal data from pg-1.6, as long as the new attribute isn't used.
  • Remove dependency to MSYS2 package "postgresql" from binary Windows gem #654
Commits
  • c75ed8d Bump VERSION to 1.6.2
  • 90a00e5 Update CHANGELOG for pg-1.6.2
  • c584348 Merge pull request #670 from larskanis/update-deps
  • 227653d Update dependencies
  • 428415d Prepare CHANGELOG for 1.6.2 [skip ci]
  • 4282e5c Merge pull request #669 from larskanis/test-rpath
  • 19a3547 Strip darwin C-ext to remove paths to C files
  • 5e2ac6e Temporary enable head version of rake-compiler-dock
  • 70551b9 Add spec/pg_spec.rb to tests
  • 35b2704 Add tests for rpath or other build related paths
  • Additional commits viewable in compare view

Updates activerecord from 8.0.2.1 to 8.0.3

Release notes

Sourced from activerecord's releases.

8.0.3

Active Support

  • ActiveSupport::FileUpdateChecker does not depend on Time.now to prevent unnecessary reloads with time travel test helpers

    Jan Grodowski

  • Fix ActiveSupport::BroadcastLogger from executing a block argument for each logger (tagged, info, etc.).

    Jared Armstrong

  • Make ActiveSupport::Logger #freeze-friendly.

    Joshua Young

  • Fix ActiveSupport::HashWithIndifferentAccess#transform_keys! removing defaults.

    Hartley McGuire

  • Fix ActiveSupport::HashWithIndifferentAccess#tranform_keys! to handle collisions.

    If the transformation would result in a key equal to another not yet transformed one, it would result in keys being lost.

    Before:

    >> {a: 1, b: 2}.with_indifferent_access.transform_keys!(&:succ)
    => {"c" => 1}

    After:

    >> {a: 1, b: 2}.with_indifferent_access.transform_keys!(&:succ)
    => {"c" => 1, "d" => 2}

    Jason T Johnson, Jean Boussier

  • Fix ActiveSupport::Cache::MemCacheStore#read_multi to handle network errors.

    This method specifically wasn't handling network errors like other codepaths.

    Alessandro Dal Grande

  • Fix configuring RedisCacheStore with raw: true.

    fatkodima

... (truncated)

Changelog

Sourced from activerecord's changelog.

Rails 8.0.3 (September 22, 2025)

  • Fix query cache for pinned connections in multi threaded transactional tests

    When a pinned connection is used across separate threads, they now use a separate cache store for each thread.

    This improve accuracy of system tests, and any test using multiple threads.

    Heinrich Lee Yu, Jean Boussier

  • Don't add id_value attribute alias when attribute/column with that name already exists.

    Rob Lewis

  • Fix false positive change detection involving STI and polymorphic has one relationships.

    Polymorphic has_one relationships would always be considered changed when defined in a STI child class, causing nedless extra autosaves.

    David Fritsch

  • Skip calling PG::Connection#cancel in cancel_any_running_query when using libpq >= 18 with pg < 1.6.0, due to incompatibility. Rollback still runs, but may take longer.

    Yasuo Honda, Lars Kanis

  • Fix stale association detection for polymorphic belongs_to.

    Florent Beaurain, Thomas Crambert

  • Fix removal of PostgreSQL version comments in structure.sql for latest PostgreSQL versions which include \restrict

    Brendan Weibrecht

  • Allow setting schema_format in database configuration.

    primary:
      schema_format: ruby
    

    Useful in multi-database setups to have different formats per-database.

    T S Vallender

  • Use ntuples to populate row_count instead of count for Postgres

    Jonathan Calvert

... (truncated)

Commits
  • 529f933 Preparing for 8.0.3 release
  • 0160f42 Sync CHANGELOGs
  • 74038d7 Merge pull request #55722 from kozy4324/fix-lease-sticky-flag-timing
  • 4fc9618 Merge pull request #55703 from byroot/hly-fix-query-cache-system-tests-2
  • 20c7cff Merge pull request #55699 from skipkayhil/hm-zlxzqwylrmlruzuq
  • 8408ba6 Merge pull request #55698 from salzig/fix/respect_schema_format_in_db_schema_...
  • e7f65a9 Merge pull request #55691 from kohder/rl-id-value-alias-fix
  • 228fcf5 Merge pull request #51359 from dfritsch/dfritsch/51280-polymorphic-name
  • 5456941 Return early when column are empty in WhereClause#except_predicates
  • 87e495d Merge pull request #55675 from skipkayhil/hm-ouuplulxpznztlyp
  • Additional commits viewable in compare view

Updates activesupport from 8.0.2.1 to 8.0.3

Release notes

Sourced from activesupport's releases.

8.0.3

Active Support

  • ActiveSupport::FileUpdateChecker does not depend on Time.now to prevent unnecessary reloads with time travel test helpers

    Jan Grodowski

  • Fix ActiveSupport::BroadcastLogger from executing a block argument for each logger (tagged, info, etc.).

    Jared Armstrong

  • Make ActiveSupport::Logger #freeze-friendly.

    Joshua Young

  • Fix ActiveSupport::HashWithIndifferentAccess#transform_keys! removing defaults.

    Hartley McGuire

  • Fix ActiveSupport::HashWithIndifferentAccess#tranform_keys! to handle collisions.

    If the transformation would result in a key equal to another not yet transformed one, it would result in keys being lost.

    Before:

    >> {a: 1, b: 2}.with_indifferent_access.transform_keys!(&:succ)
    => {"c" => 1}

    After:

    >> {a: 1, b: 2}.with_indifferent_access.transform_keys!(&:succ)
    => {"c" => 1, "d" => 2}

    Jason T Johnson, Jean Boussier

  • Fix ActiveSupport::Cache::MemCacheStore#read_multi to handle network errors.

    This method specifically wasn't handling network errors like other codepaths.

    Alessandro Dal Grande

  • Fix configuring RedisCacheStore with raw: true.

    fatkodima

... (truncated)

Changelog

Sourced from activesupport's changelog.

Rails 8.0.3 (September 22, 2025)

  • ActiveSupport::FileUpdateChecker does not depend on Time.now to prevent unnecessary reloads with time travel test helpers

    Jan Grodowski

  • Fix ActiveSupport::BroadcastLogger from executing a block argument for each logger (tagged, info, etc.).

    Jared Armstrong

  • Make ActiveSupport::Logger #freeze-friendly.

    Joshua Young

  • Fix ActiveSupport::HashWithIndifferentAccess#transform_keys! removing defaults.

    Hartley McGuire

  • Fix ActiveSupport::HashWithIndifferentAccess#tranform_keys! to handle collisions.

    If the transformation would result in a key equal to another not yet transformed one, it would result in keys being lost.

    Before:

    >> {a: 1, b: 2}.with_indifferent_access.transform_keys!(&:succ)
    => {"c" => 1}

    After:

    >> {a: 1, b: 2}.with_indifferent_access.transform_keys!(&:succ)
    => {"c" => 1, "d" => 2}

    Jason T Johnson, Jean Boussier

  • Fix ActiveSupport::Cache::MemCacheStore#read_multi to handle network errors.

    This method specifically wasn't handling network errors like other codepaths.

    Alessandro Dal Grande

  • Fix configuring RedisCacheStore with raw: true.

    fatkodima

  • Fix Enumerable#sole for infinite collections.

... (truncated)

Commits
  • 529f933 Preparing for 8.0.3 release
  • 0160f42 Sync CHANGELOGs
  • 78fe965 Merge pull request #55710 from Shopify/grodowski/file-update-checker-time-tra...
  • 830363a Merge pull request #55688 from Shopify/drop-active-support-benchmar-extension
  • 5456941 Return early when column are empty in WhereClause#except_predicates
  • c9a82e2 BigDecimal now works with floats without precision
  • b2ad417 Merge security patches in 8-0-stable
  • ae1aa38 Merge pull request #53093 from armstrjare/broadcast-logger-with-block
  • f5a0c11 Use comment for example return values [ci-skip]
  • 5f3b209 Replace "mailing list" with "forum" [ci-skip]
  • Additional commits viewable in compare view

Updates rack from 3.2.0 to 3.2.1

Changelog

Sourced from rack's changelog.

Changelog

All notable changes to this project will be documented in this file. For info on how to format all future additions to this file please reference Keep A Changelog.

Unreleased

SPEC Changes

Added

  • Add Rack::Files#assign_headers to allow overriding how the configured file headers are set. (#2377, @​codergeek121)
  • Add support for rack.response_finished to Rack::TempfileReaper. (#2363, @​skipkayhil)
  • Add support for streaming bodies when using Rack::Events. (#2375, @​unflxw)

Changed

Fixed

  • Fix an issue where a NoMethodError would be raised when using Rack::Events with streaming bodies. (#2375, @​unflxw)
Commits

Updates sass-embedded from 1.89.2 to 1.93.2

Commits

Updates rubocop from 1.79.1 to 1.81.1

Release notes

Sourced from rubocop's releases.

RuboCop v1.81.1

Bug fixes

  • #14563: Fix incorrect autocorrection for Lint/DeprecatedOpenSSLConstant when Cipher appears twice. (@​koic)

Changes

  • #14565: Allow multiline method chain for Style/NumberedParameters and Style/ItBlockParameter with EnforcedStyle: allow_single_line when the block itself is on a single line. (@​earlopain)

RuboCop v1.81.0

New features

Bug fixes

  • #14560: Fix an error for Style/NilComparison cop when using the var.==(nil) and var.===(nil) syntax. (@​viralpraxis)
  • #14535: Fix autocorrect for Style/ExplicitBlockArgument when there are two methods that share the same implementation. (@​earlopain)
  • #14527: Fix false negatives for Style/NumberedParameters and Style/ItBlockParameter when using multiline method chain with EnforcedStyle: allow_single_line. (@​koic)
  • #14522: Fix false negatives for Layout/MultilineOperationIndentation when using indented code on LHS of equality operator in modifier method definition. (@​koic)
  • #14496: Fix false negatives for Layout/EmptyLineBetweenDefs for AllowAdjacentOneLineDefs: false and DefLikeMacros that take no block. (@​earlopain)
  • #14553: Fix false positives when EnforcedStyle: allowed_in_returns and !! appears across multiple lines in return position. (@​koic)
  • #14557: Fix false positives for Style/RedundantParentheses when parentheses are used around a one-line rescue expression as a condition. (@​koic)
  • #14525: Fix false positives for Style/RedundantRegexpEscape when an escaped variable sigil follows # (e.g., /#\@foo/, /#\@@bar/, /#\$baz/). (@​koic)
  • #14529: Fix false negative in Layout/RescueEnsureAlignment with a block whose send node is split over multiple lines. (@​dvandersluis)
  • #14528: Fix Style/RedundantFormat when the format string has a variable width that isn't given as a literal value. (@​dvandersluis)
  • #14541: Fix gemspec parsing error when ParserEngine: parser_prism is configured in a base config file. ([@​sudoremo][])
  • #14544: Fix an incorrect autocorrect for Lint/Void when using a return value in assignment method definition. (@​koic)
  • #14543: Fix an incorrect autocorrect for Style/RedundantRegexpArgument when using escaped single quote character. (@​koic)
  • #14540: Fix an incorrect autocorrect for Style/UnlessElse when using unless with then. (@​koic)
  • #14507: Fix the built-in Ruby LSP add-on not restarting when config files (.rubocop.yml, .rubocop_todo.yml) change. (@​earlopain)
  • #14514: Fix the built-in Ruby LSP add-on not respecting .rubocop config file. (@​earlopain)
  • #14508: Fix the built-in Ruby LSP add-on getting in an irrecoverable state when the config is invalid on startup. (@​earlopain)
  • #14534: Prevent Layout/LineLength autocorrection from splitting a block if its receiver contains a heredoc. (@​dvandersluis)
  • #14497: Fix a false positive for Lint/ShadowedArgument when assigning inside a rescue block. (@​earlopain)

Changes

  • #14492: Add support for LSP positionEncoding utf-8 and utf-32. ([@​tmtm][])

... (truncated)

Changelog

Sourced from rubocop's changelog.

1.81.1 (2025-09-26)

Bug fixes

  • #14563: Fix incorrect autocorrection for Lint/DeprecatedOpenSSLConstant when Cipher appears twice. ([@​koic][])

Changes

  • #14565: Allow multiline method chain for Style/NumberedParameters and Style/ItBlockParameter with EnforcedStyle: allow_single_line when the block itself is on a single line. ([@​earlopain][])

1.81.0 (2025-09-25)

New features

  • #14512: Add Style/ArrayIntersectWithSingleElement cop. ([@​r7kamura][])
  • #10971: Support EnforcedStyleForMultiline: diff_comma in Style/TrailingCommaInArguments. ([@​akouryy][])

Bug fixes

  • #14560: Fix an error for Style/NilComparison cop when using the var.==(nil) and var.===(nil) syntax. ([@​viralpraxis][])
  • #14535: Fix autocorrect for Style/ExplicitBlockArgument when there are two methods that share the same implementation. ([@​earlopain][])
  • #14527: Fix false negatives for Style/NumberedParameters and Style/ItBlockParameter when using multiline method chain with EnforcedStyle: allow_single_line. ([@​koic][])
  • #14522: Fix false negatives for Layout/MultilineOperationIndentation when using indented code on LHS of equality operator in modifier method definition. ([@​koic][])
  • #14496: Fix false negatives for Layout/EmptyLineBetweenDefs for AllowAdjacentOneLineDefs: false and DefLikeMacros that take no block. ([@​earlopain][])
  • #14553: Fix false positives when EnforcedStyle: allowed_in_returns and !! appears across multiple lines in return position. ([@​koic][])
  • #14557: Fix false positives for Style/RedundantParentheses when parentheses are used around a one-line rescue expression as a condition. ([@​koic][])
  • #14525: Fix false positives for Style/RedundantRegexpEscape when an escaped variable sigil follows # (e.g., /#\@foo/, /#\@@bar/, /#\$baz/). ([@​koic][])
  • #14529: Fix false negative in Layout/RescueEnsureAlignment with a block whose send node is split over multiple lines. ([@​dvandersluis][])
  • #14528: Fix Style/RedundantFormat when the format string has a variable width that isn't given as a literal value. ([@​dvandersluis][])
  • #14541: Fix gemspec parsing error when ParserEngine: parser_prism is configured in a base config file. ([@​sudoremo][])
  • #14544: Fix an incorrect autocorrect for Lint/Void when using a return value in assignment method definition. ([@​koic][])
  • #14543: Fix an incorrect autocorrect for Style/RedundantRegexpArgument when using escaped single quote character. ([@​koic][])
  • #14540: Fix an incorrect autocorrect for Style/UnlessElse when using unless with then. ([@​koic][])
  • #14507: Fix the built-in Ruby LSP add-on not restarting when config files (.rubocop.yml, .rubocop_todo.yml) change. ([@​earlopain][])
  • #14514: Fix the built-in Ruby LSP add-on not respecting .rubocop config file. ([@​earlopain][])
  • #14508: Fix the built-in Ruby LSP add-on getting in an irrecoverable state when the config is invalid on startup. ([@​earlopain][])
  • #14534: Prevent Layout/LineLength autocorrection from splitting a block if its receiver contains a heredoc. ([@​dvandersluis][])
  • #14497: Fix a false positive for Lint/ShadowedArgument when assigning inside a rescue block. ([@​earlopain][])

Changes

  • #14492: Add support for LSP positionEncoding utf-8 and utf-32. ([@​tmtm][])

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 and yield, super, or defined?. ([@​earlopain][])
  • #14489: Fix false negatives for Style/RedundantParentheses with method calls taking argument without parentheses like return (x y) if z. ([@​earlopain][])

... (truncated)

Commits
  • db58831 Cut 1.81.1
  • 2797207 Update Changelog
  • 6b2f047 [Fix #14563] Fix an incorrect autocorrect for Lint/DeprecatedOpenSSLConstant
  • 8260fc1 Allow implicit block args when the block itself is on one line only
  • c1400e7 [Docs] Document --editor-mode in a comment`
  • d3ef76a Reset the docs version
  • 386bf10 Cut 1.81
  • 148250d Update Changelog
  • face244 Fix an error for Style/NilComparison cop
  • d8c1d4c Fix an error for InternalAffairsOnSendWithoutOnCSend with alias_method an...
  • Additional commits viewable in compare view

Updates solargraph from 0.56.2 to 0.57.0

Changelog

Sourced from solargraph's changelog.

0.57.0 - September 16, 2025

  • 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)
Commits
  • 9c707a2 Release 0.57.0
  • e3fe016 Refactor reference pin handling (#1058)
  • 04ec473 Flow sensitive typing handles x.is_a? without an argument (#1070)
  • fc8fbe9 Fix solargraph-rails check (#1073)
  • 262ae8e Fix Convention/Plugin pins not being updated on file change (#1028)
  • a821774 Run specs from solargraph-rails configured against current code in CI (#892)
  • 487381c Run plugin specs separately for perf insights (#1046)
  • a090bd4 Fix type errors found in strong typechecking (#1045)
  • 956924c Factor out require_paths logic to its own class (#1062)
  • cc4bd4c Understand "Parser::AST::Node < AST::Node" in RBS (#1060)
  • 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 <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

Bumps the patch-and-minor-dependencies group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [pg](https://github.com/ged/ruby-pg) | `1.6.0` | `1.6.2` |
| [activerecord](https://github.com/rails/rails) | `8.0.2.1` | `8.0.3` |
| [activesupport](https://github.com/rails/rails) | `8.0.2.1` | `8.0.3` |
| [rack](https://github.com/rack/rack) | `3.2.0` | `3.2.1` |
| [sass-embedded](https://github.com/sass-contrib/sass-embedded-host-ruby) | `1.89.2` | `1.93.2` |
| [rubocop](https://github.com/rubocop/rubocop) | `1.79.1` | `1.81.1` |
| [solargraph](https://github.com/castwide/solargraph) | `0.56.2` | `0.57.0` |


Updates `pg` from 1.6.0 to 1.6.2
- [Changelog](https://github.com/ged/ruby-pg/blob/master/CHANGELOG.md)
- [Commits](ged/ruby-pg@v1.6.0...v1.6.2)

Updates `activerecord` from 8.0.2.1 to 8.0.3
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v8.0.3/activerecord/CHANGELOG.md)
- [Commits](rails/rails@v8.0.2.1...v8.0.3)

Updates `activesupport` from 8.0.2.1 to 8.0.3
- [Release notes](https://github.com/rails/rails/releases)
- [Changelog](https://github.com/rails/rails/blob/v8.0.3/activesupport/CHANGELOG.md)
- [Commits](rails/rails@v8.0.2.1...v8.0.3)

Updates `rack` from 3.2.0 to 3.2.1
- [Release notes](https://github.com/rack/rack/releases)
- [Changelog](https://github.com/rack/rack/blob/main/CHANGELOG.md)
- [Commits](rack/rack@v3.2.0...v3.2.1)

Updates `sass-embedded` from 1.89.2 to 1.93.2
- [Commits](sass-contrib/sass-embedded-host-ruby@v1.89.2...v1.93.2)

Updates `rubocop` from 1.79.1 to 1.81.1
- [Release notes](https://github.com/rubocop/rubocop/releases)
- [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md)
- [Commits](rubocop/rubocop@v1.79.1...v1.81.1)

Updates `solargraph` from 0.56.2 to 0.57.0
- [Changelog](https://github.com/castwide/solargraph/blob/master/CHANGELOG.md)
- [Commits](castwide/solargraph@v0.56.2...v0.57.0)

---
updated-dependencies:
- dependency-name: pg
  dependency-version: 1.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: activerecord
  dependency-version: 8.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: activesupport
  dependency-version: 8.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: rack
  dependency-version: 3.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor-dependencies
- dependency-name: sass-embedded
  dependency-version: 1.93.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
- dependency-name: rubocop
  dependency-version: 1.81.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
- dependency-name: solargraph
  dependency-version: 0.57.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file ruby Pull requests that update ruby code labels Oct 1, 2025
@simonneutert simonneutert merged commit 9f8048f into main Oct 1, 2025
2 checks passed
@simonneutert simonneutert deleted the dependabot/bundler/patch-and-minor-dependencies-dda3aca745 branch October 1, 2025 10:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file ruby Pull requests that update ruby code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant