From: merch-redmine@... Date: 2020-07-10T14:47:11+00:00 Subject: [ruby-core:99111] [Ruby master Feature#17000] 2.7.2 turns off deprecation warnings by default Issue #17000 has been updated by jeremyevans0 (Jeremy Evans). Dan0042 (Daniel DeLorme) wrote in #note-12: > So has anyone considered silencing warnings when they originate from gems? I mean, the warning already includes that information: > > /path/to/foo.rb:2: warning: Using the last argument as keyword parameters is deprecated; maybe ** should be added to the call > /path/to/foo.rb:1: warning: The called method `foo' is defined here > > It should be pretty simple to check if the filename in the first warning starts with `Gem::RUBYGEMS_DIR` and only display the 2 warnings if explicitly opted in (via `$VERBOSE` or `Warning[:gems]` or such) This is simple to do with the warning gem: ```ruby require 'warning' Gem.path.each do |path| Warning.ignore(:keyword_separation, path) end ``` ---------------------------------------- Feature #17000: 2.7.2 turns off deprecation warnings by default https://bugs.ruby-lang.org/issues/17000#change-86486 * Author: mame (Yusuke Endoh) * Status: Open * Priority: Normal * Assignee: nagachika (Tomoyuki Chikanaga) ---------------------------------------- Matz has decided to disable deprecation warnings for 3.0 keyword separation by default because many users feel them noisy and painful rather than useful. See https://discuss.rubyonrails.org/t/new-2-7-3-0-keyword-argument-pain-point/74980/47 . https://github.com/ruby/ruby/pull/3273 is a pull request for the change. It is essentially one-line change in `error.c`, though it has many changes for tests that checks if the warning is appropriately emitted. Note that this changeset disables *all* deprecation warnings by default. The reason why I stop not only keyword-related deprecation warnings but all other ones is because, if we disable only keyword-related deprecation warnings, and if keep other deprecation on by default, it becomes ambiguous what `Warning[:deprecated]` should return. We considered a new API like `Warning[:keyword_separation_deprecated] = true / false`, but we want to minimize the change because it goes to 2.7 branch. Fortunately, there are not so many other warnings disabled together; a notable one is `Capturing the given block using Kernel#proc is deprecated; use `&block` instead`, but other warnings are minor, as far as I see. It is somewhat unfortunate, but matz has already agreed with this direction. Matz also said in the forum, "we will move on to the new keyword argument behavior in Ruby3.0 as planned". This violates the traditional convention that "gradually" makes deprecation warnings noisy: deprecated behavior is (1) warned only when VERBOSE is enabled, (2) always warned, and (3) removed. However, matz made this decision due to special circumstances of 3.0 keyword arguments; delaying the change will be also painful. Note that, currently, the deprecation convention itself is not changed, so this patch is *not* going to master branch. We can discuss the deprecation policy change in another ticket, if needed. Anyway, let this ticket focus on ruby_2_7 branch change. Please do not discuss the convention change in this ticket. The final decision is up to 2.7 branch maintainer, @nagachika san, but I hope this change is accepted. cc/ @jeremyevans0 @eregon @nobu @nagachika ---Files-------------------------------- keyword-warnings-verbose-mode.patch (161 KB) -- https://bugs.ruby-lang.org/ Unsubscribe: