Skip to content

v2.65.0

Compare
Choose a tag to compare
@joelhawksley joelhawksley released this 09 Aug 13:27
· 435 commits to main since this release
8ed02f9
  • Raise ArgumentError when conflicting Slots are defined.

    Before this change it was possible to define Slots with conflicting names, for example:

    class MyComponent < ViewComponent::Base
      renders_one :item
      renders_many :items
    end

    Joel Hawksley