How to pass more than one params in bind method monads

I’m just wondering, is something changed lately or I mixed up something. Let’s assume I’ve got below class:

require 'dry-monads'
require 'dry/monads/all'

module Test
  class MonadsClass
    include Dry::Monads

    def initialize(signees)
      @signees = signees
    end

    def call
      Success(signees)
        .bind(method(:fetch_template))
        .bind(method(:envelope_from_template))
    end

    attr_reader :signees

    private

    def fetch_template(signees)
      key = "template_#{signees.size}".to_sym
      template_id = Rails.application.credentials.some_api.fetch(key)

      Success(template_id: template_id, key: key)
    end

    def envelope_from_template(template_id:, key:)
      response = some_api.copy_from_template(template_id, key)

      response.failure? ? Failure(response.failure) : Success(response.value!)
    end
  end
end

Why on earth I’m getting strange error of:

     Failure/Error:
           def envelope_from_template(template_id:, key:)
             response = some_api.copy_from_template(template_id)

             response.failure? ? Failure(response.failure) : Success(response.value!)
           end

     ArgumentError:
       wrong number of arguments (given 1, expected 0; required keywords: template_id, key)```

It's not allowed anymore to passed more argument than the first `bind` one?

I test tested a bit and this used to work in ruby 2.x, in ruby 3 when we got a bigger change to ruby keywords then it stoped working. Does that match with your experience?
This might be worth getting one of the core maintainer attentsion.

And a small note. It is super helpfull to have code examples but if you want to take it one step further you should include a script which is ready to run to demonstrate the issue. I alterert your example to

require 'bundler/inline'

gemfile do
  source 'https://rubygems.org'
  gem 'dry-monads', '~> 1.6.0'
end


require 'dry-monads'
require 'dry/monads/all'

module Test
  class MonadsClass
    include Dry::Monads

    def initialize(signees)
      @signees = signees
    end

    def call
      Success(signees)
        .bind(method(:fetch_template))
        .bind(method(:envelope_from_template))
    end

    attr_reader :signees

    private

    def fetch_template(signees)
      key = "template_#{signees.size}".to_sym
      template_id = "Rails.application.credentials.some_api.fetch(#{key})"

      Success(template_id: template_id, key: key)
    end

    def envelope_from_template(template_id:, key:)
    # def envelope_from_template(options) # in ruby 3 you will receive them as options
      response = "some_api.copy_from_template(#{template_id}, #{key})"

      rand > 0.5 ? Failure(response) : Success(response)
    end
  end
end

pp Test::MonadsClass.new("lol").call