Skip to content

Conversation

@depfu
Copy link
Contributor

@depfu depfu bot commented Feb 1, 2026

Here is everything you need to know about this update. Please take a good look at what changed and the test results before merging this pull request.

What changed?

✳️ rubycritic (4.11.0 → 4.12.0) · Repo · Changelog

Commits

See the full diff on Github. The new version differs by more commits than we can show here.

↗️ addressable (indirect, 2.8.7 → 2.8.8) · Repo · Changelog

Release Notes

2.8.8 (from changelog)

  • Replace the unicode.data blob by a ruby constant (#561)
  • Allow public_suffix 7 (#558)

Does any of this look wrong? Please let us know.

↗️ dry-core (indirect, 1.1.0 → 1.2.0) · Repo · Changelog

Release Notes

1.2.0 (from changelog)

Changed

  • Support Ruby 4.0 in Dry::Core::BasicObject#inspect and #pretty_print (by returning false from its default #respond_to_missing?). (@timriley in #87)
  • Set minimum Ruby version to 3.2. (@timriley)

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 29 commits:

↗️ dry-inflector (indirect, 1.2.0 → 1.3.1) · Repo · Changelog

Release Notes

1.3.1

Fixed

  • Improve pluralization of "-um" vs "-ium" words. "Premium" is now pluralized correctly. (@hmaddocks in #60)

Compare v1.3.0 ... v1.3.1

1.3.0

Changed

Fixed

  • Correctly handle pluralized aconyms in #underscore. For example, underscoring "CustomerAPIs" now gives "customer_apis". (@hmaddocks in #54)
  • Correctly singularize "uses" and pluralize "use". (@hmaddocks in #55)
  • Fix singularization of plurals ending in a vowel and "xes", such as "taxes" -> "tax". (@hmaddocks in #56)
  • Fix pluralization of words ending in "ee", such as "fee" -> "fees". (@hmaddocks in #57)
  • Fix singularizing of words like "leaves" and "thieves". (@hmaddocks in #58)
  • Fix pluralization of words ending in "f" that should not have their ending turn into "ves", e.g. "roof"->"roofs" and "chief"->"chiefs". (@hmaddocks in #59)
  • Fix pluralization of "virus" into "viruses". (@hmaddocks in #59)

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 57 commits:

↗️ dry-schema (indirect, 1.14.1 → 1.15.0) · Repo · Changelog

Release Notes

1.15.0

Changed

  • Set mimimum Ruby version to 3.2 (@timriley)
  • Support UUID v6, v7 and v8 predicates (:uuid_v6?, :uuid_v7? and :uuid_v8?). (@illiatdesdindes in #509)
  • Support size?, format?, true? and false? predicates when generating JSON schemas. (@cramt in #499)
  • Allow symbols to be given for top_namespace setting. (@unused in #491)

Fixed

  • Support intersection types (created with & operator) in schema definitions. (@baweaver in #496)

    Now works without errors:

    intersection_type =
      Types::Hash.schema(a: Types::String) & 
      (Types::Hash.schema(b: Types::String) | Types::Hash.schema(c: Types::String))
    

    schema = Dry::Schema.Params do
    required(:body).value(intersection_type)
    end

    schema.call(body: {a: "test", b: "value"}) # passes
    schema.call(body: {b: "value"}) # fails - missing 'a'

  • JSON schema generation now properly handles Dry::Struct instances wrapped in constructors. (@baweaver in #497)

    Before, when generating JSON schema for a schema containing a Dry::Struct wrapped in a constructor (e.g., Address.constructor(&:itself)), all struct properties were omitted from the generated schema, returning only {type: "object"} instead of the full schema with properties.

    Before/after:

    # Before: Missing struct properties
    Dry::Schema.Params do 
      required(:address).value(Address.constructor(&:itself)) 
    end.json_schema
    # => {:properties=>{:address=>{:type=>"object"}}} # No properties
    

    # After: Full struct schema included
    Dry::Schema.Params do
    required(:address).value(Address.constructor(&:itself))
    end.json_schema
    # => {:properties=>{:address=>{:type=>"object", :properties=>{:street=>{...}}}}} # Properties included

  • JSON schema generation now correctly uses minItems/maxItems for array size predicates instead of minLength/maxLength. (@baweaver in #498)

  • Show correct index in errors when validating unexpected keys in arrays. (@katafrakt in #510)

  • Support validating nested arrays when using config.validate_keys = true. (@misdoro in #508)

  • Fix handling of i18n messages from proc/lambda-produced hashes. (@rrothenberger in #493)

  • Fix error arising when generating errors when a key is repeated in a nested schema. (@jacob-carlborg in #503)

  • Fix method call typo in Dry::Schema::Trace#respond_to_missing?. (@flash-gordon in 13ddb51)

Compare v1.14.1 ... v1.15.0

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 63 commits:

↗️ flay (indirect, 2.13.3 → 2.14.2) · Repo · Changelog

Release Notes

2.14.2 (from changelog)

  • 1 bug fix:

    • Namespace NotRubyParser to avoid problems with bundler’s horrid eager loading. (nateberkopec)

2.14.1 (from changelog)

  • 3 bug fixes:

    • Bumped dependency to prism to get some upstreamed fixes.

    • Loosened the minitest dependency to include MT6.

    • Removed local copy of the upstreamed fixes.

2.14.0 (from changelog)

  • 2 minor enhancements:

    • Bumped path_expander to 2.0.0.

    • Switched to prism for ruby parsing. Use –legacy for RubyParser.

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 13 commits:

↗️ flog (indirect, 4.8.0 → 4.9.4) · Repo · Changelog

Release Notes

4.9.4 (from changelog)

  • 2 bug fixes:

    • Namespace NotRubyParser to avoid problems with bundler’s horrid eager loading. (nateberkopec)

    • Patch prism to recognize ‘it` as a local. (faisal)

4.9.3 (from changelog)

  • 1 bug fix:

    • Fixed bug caused by last release duplicating (frozen) options hash. (nateberkopec)

4.9.2 (from changelog)

  • 2 bug fixes:

    • Duplicate passed in options in case frozen.

    • Oops! Fixed –legacy option definition.

4.9.1 (from changelog)

  • 4 bug fixes:

    • Bumped dependency to prism to get some upstreamed fixes.

    • Dropped ruby_parser dependency (now considered soft dep for –legacy flag).

    • Minor cleanup of some of the upstreamed fixes.

    • Re-add ruby_parser dependency until I can get a patch into prism to loosen it up.

4.9.0 (from changelog)

  • 2 minor enhancements:

    • Bumped path_expander to 2.0.0.

    • Switched to prism for ruby parsing. Use –legacy for RubyParser.

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 17 commits:

↗️ path_expander (indirect, 1.1.3 → 2.0.1) · Repo · Changelog

Release Notes

2.0.1 (from changelog)

  • 4 bug fixes:

    • Fix path_expander processing of regexp args on windows.

    • Normalize paths when expanding dirs.

    • Added CI setup from minitest 6.

    • Normalize GHA workflow with minitest and others.

2.0.0 (from changelog)

  • 3 major enhancements:

    • Added #pre_process and #post_process and call them from #process.

    • Modified #process to return self if block given, otherwise Enumerator.

    • Modified #process to take a block for processing files directly.

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by 8 commits:

↗️ public_suffix (indirect, 6.0.2 → 7.0.2) · Repo · Changelog

Release Notes

7.0.2 (from changelog)

Changed

  • Excluded symlinks and unnecessary files from gem packaging. On Windows symlinks cannot be created without Administrator privileges or with developer mode enabled #496.

7.0.1 (from changelog)

Changed

  • Updated definitions.

7.0.0 (from changelog)

Changed

  • Updated definitions.
  • Minimum Ruby version is 3.2

Does any of this look wrong? Please let us know.

Commits

See the full diff on Github. The new version differs by more commits than we can show here.


Depfu Status

Depfu will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with @depfu rebase.

All Depfu comment commands
@​depfu rebase
Rebases against your default branch and redoes this update
@​depfu recreate
Recreates this PR, overwriting any edits that you've made to it
@​depfu merge
Merges this PR once your tests are passing and conflicts are resolved
@​depfu cancel merge
Cancels automatic merging of this PR
@​depfu close
Closes this PR and deletes the branch
@​depfu reopen
Restores the branch and reopens this PR (if it's closed)
@​depfu pause
Ignores all future updates for this dependency and closes this PR
@​depfu pause [minor|major]
Ignores all future minor/major updates for this dependency and closes this PR
@​depfu resume
Future versions of this dependency will create PRs again (leaves this PR as is)

@depfu depfu bot added the depfu label Feb 1, 2026
@coveralls
Copy link

Pull Request Test Coverage Report for Build 21570813191

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 99.361%

Totals Coverage Status
Change from base Build 21567305889: 0.0%
Covered Lines: 778
Relevant Lines: 783

💛 - Coveralls

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant