ruby-changes:48493
From: hsbt <ko1@a...>
Date: Thu, 2 Nov 2017 13:25:42 +0900 (JST)
Subject: [ruby-changes:48493] hsbt:r60608 (trunk): Merge release version of Rubygems 2.7.0.
hsbt 2017-11-02 13:25:37 +0900 (Thu, 02 Nov 2017) New Revision: 60608 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=60608 Log: Merge release version of Rubygems 2.7.0. Modified files: trunk/NEWS trunk/lib/rubygems/safe_yaml.rb trunk/lib/rubygems.rb Index: lib/rubygems/safe_yaml.rb =================================================================== --- lib/rubygems/safe_yaml.rb (revision 60607) +++ lib/rubygems/safe_yaml.rb (revision 60608) @@ -35,7 +35,10 @@ module Gem https://github.com/ruby/ruby/blob/trunk/lib/rubygems/safe_yaml.rb#L35 ::YAML.safe_load(input, [::Symbol]) end else - warn "YAML safe loading is not available. Please upgrade psych to a version that supports safe loading (>= 2.0)." + unless Gem::Deprecate.skip + warn "YAML safe loading is not available. Please upgrade psych to a version that supports safe loading (>= 2.0)." + end + def self.safe_load input, *args ::YAML.load input end Index: lib/rubygems.rb =================================================================== --- lib/rubygems.rb (revision 60607) +++ lib/rubygems.rb (revision 60608) @@ -10,7 +10,7 @@ require 'rbconfig' https://github.com/ruby/ruby/blob/trunk/lib/rubygems.rb#L10 require 'thread' module Gem - VERSION = "2.6.14" + VERSION = "2.7.0" end # Must be first since it unloads the prelude from 1.9.2 Index: NEWS =================================================================== --- NEWS (revision 60607) +++ NEWS (revision 60608) @@ -189,7 +189,8 @@ with all sufficient information, see the https://github.com/ruby/ruby/blob/trunk/NEWS#L189 * Rubygems - * Update Rubygems 2.6.14. + * Update Rubygems 2.7.0. + * http://blog.rubygems.org/2017/11/01/2.7.0-released.html * http://blog.rubygems.org/2017/08/27/2.6.13-released.html * http://blog.rubygems.org/2017/10/09/unsafe-object-deserialization-vulnerability.html -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/