I am using wikitext with Rails 6.0.
I got a warning when starting rspec.
Can I upgrade my Rails version to 6.1 or 7.0 without problems?
DEPRECATION WARNING: Single arity template handlers are deprecated. Template handlers must
now accept two parameters, the view object and the source for the view object.
Change:
>> ActionView::Template::Handlers::Wikitext.call(template)
To:
>> ActionView::Template::Handlers::Wikitext.call(template, source)
(called from <main> at [PREFIX]/config/environment.rb:5)
I am using wikitext with Rails 6.0.
I got a warning when starting rspec.
Can I upgrade my Rails version to 6.1 or 7.0 without problems?
https://github.com/rails/rails/blob/v6.0.2.1/actionview/lib/action_view/template/handlers.rb#L46-L56