[前][次][番号順一覧][スレッド一覧]

ruby-changes:49326

From: normal <ko1@a...>
Date: Sun, 24 Dec 2017 17:38:49 +0900 (JST)
Subject: [ruby-changes:49326] normal:r61443 (trunk): webrick 1.4.2

normal	2017-12-24 17:38:43 +0900 (Sun, 24 Dec 2017)

  New Revision: 61443

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=61443

  Log:
    webrick 1.4.2
    
    This release removes uses of Kernel#open to avoid unintended
    behaviors and make future auditing easier. [Misc #14216]
    
    6 changes since 1.4.1:
    
          webrick: httpauth requires regular files
          webrick/httpservlet/cgi_runner.rb: remove unnecessary open
          webrick: WEBrick::Log requires path arg when given string
          webrick/httpservlet/*handler: use File.open
          webrick/httputils: note Kernel#open behavior
          webrick/httpservelet/cgi_runner: avoid IO#reopen on pathname

  Modified files:
    trunk/lib/webrick/version.rb
    trunk/lib/webrick/webrick.gemspec
Index: lib/webrick/webrick.gemspec
===================================================================
--- lib/webrick/webrick.gemspec	(revision 61442)
+++ lib/webrick/webrick.gemspec	(revision 61443)
@@ -4,7 +4,7 @@ require_relative 'version' https://github.com/ruby/ruby/blob/trunk/lib/webrick/webrick.gemspec#L4
 Gem::Specification.new do |s|
   s.name = "webrick"
   s.version = WEBrick::VERSION
-  s.date = '2017-12-18'
+  s.date = '2017-12-24'
   s.summary = "HTTP server toolkit"
   s.description = "WEBrick is an HTTP server toolkit that can be configured as an HTTPS server, a proxy server, and a virtual-host server."
 
Index: lib/webrick/version.rb
===================================================================
--- lib/webrick/version.rb	(revision 61442)
+++ lib/webrick/version.rb	(revision 61443)
@@ -14,5 +14,5 @@ module WEBrick https://github.com/ruby/ruby/blob/trunk/lib/webrick/version.rb#L14
   ##
   # The WEBrick version
 
-  VERSION      = "1.4.1"
+  VERSION      = "1.4.2"
 end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]