pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/ruby-puma
Module Name: pkgsrc
Committed By: taca
Date: Sun Dec 4 16:26:48 UTC 2022
Modified Files:
pkgsrc/www/ruby-puma: Makefile PLIST distinfo
Log Message:
www/ruby-puma: update to 6.0.0
6.0.0 (2022-10-14)
Breaking Changes
* Dropping Ruby 2.2 and 2.3 support (now 2.4+) (#2919)
* Remote_addr functionality has changed (#2652, #2653)
* No longer supporting Java 1.7 or below (JRuby 9.1 was the last release to
support this) (#2849)
* Remove nakayoshi GC (#2933, #2925)
* wait_for_less_busy_worker is now default on (#2940)
* Prefix all environment variables with PUMA_ (#2924, #2853)
* Removed some constants (#2957, #2958, #2959, #2960)
* The following classes are now part of Puma's private API: Client,
Cluster::Worker, Cluster::Worker, HandleRequest. (#2988)
* Configuration constants like DefaultRackup removed (#2928)
* Extracted LogWriter from Events (#2798)
* Only accept the standard 8 HTTP methods, others rejected with 501. (#2932)
Features
* Increase throughput on large (100kb+) response bodies by 3-10x (#2896,
#2892)
* Increase throughput on file responses (#2923)
* Add support for streaming bodies in Rack. (#2740)
* Allow OpenSSL session reuse via a 'reuse' ssl_bind method or bind string
query parameter (#2845)
* Allow run_hooks to pass a hash to blocks for use later (#2917, #2915)
* Allow using preload_app! with fork_worker (#2907)
* Support request_body_wait metric with higher precision (#2953)
* Allow header values to be arrays (Rack 3) (#2936, #2931)
* Export Puma/Ruby versions in /stats (#2875)
* Allow configuring request uri max length & request path max length (#2840)
* Add a couple of public accessors (#2774)
* Log entire backtrace when worker start fails (#2891)
* [jruby] Enable TLSv1.3 support (#2886)
* [jruby] support setting TLS protocols + rename ssl_cipher_list (#2899)
* [jruby] Support a truststore option (#2849, #2904, #2884)
Bugfixes
* Load the configuration before passing it to the binder (#2897)
* Do not raise error raised on HTTP methods we don't recognize or support,
like CONNECT (#2932, #1441)
* Fixed a memory leak when creating a new SSL listener (#2956)
Refactor
* log_writer.rb - add internal_write method (#2888)
* Extract prune_bundler code into it's own class. (#2797)
* Refactor Launcher#run to increase readability (no logic change) (#2795)
* Ruby 3.2 will have native IO#wait_* methods, don't require io/wait (#2903)
* Various internal API refactorings (#2942, #2921, #2922, #2955)
To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 pkgsrc/www/ruby-puma/Makefile
cvs rdiff -u -r1.15 -r1.16 pkgsrc/www/ruby-puma/PLIST
cvs rdiff -u -r1.31 -r1.32 pkgsrc/www/ruby-puma/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/www/ruby-puma/Makefile
diff -u pkgsrc/www/ruby-puma/Makefile:1.34 pkgsrc/www/ruby-puma/Makefile:1.35
--- pkgsrc/www/ruby-puma/Makefile:1.34 Wed Aug 31 15:46:43 2022
+++ pkgsrc/www/ruby-puma/Makefile Sun Dec 4 16:26:47 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.34 2022/08/31 15:46:43 taca Exp $
+# $NetBSD: Makefile,v 1.35 2022/12/04 16:26:47 taca Exp $
-DISTNAME= puma-5.6.5
+DISTNAME= puma-6.0.0
CATEGORIES= www
MAINTAINER= taca%NetBSD.org@localhost
Index: pkgsrc/www/ruby-puma/PLIST
diff -u pkgsrc/www/ruby-puma/PLIST:1.15 pkgsrc/www/ruby-puma/PLIST:1.16
--- pkgsrc/www/ruby-puma/PLIST:1.15 Sun Sep 19 17:56:43 2021
+++ pkgsrc/www/ruby-puma/PLIST Sun Dec 4 16:26:47 2022
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.15 2021/09/19 17:56:43 taca Exp $
+@comment $NetBSD: PLIST,v 1.16 2022/12/04 16:26:47 taca Exp $
bin/puma${RUBY_SUFFIX}
bin/pumactl${RUBY_SUFFIX}
${GEM_HOME}/cache/${GEM_NAME}.gem
@@ -29,6 +29,8 @@ ${GEM_LIBDIR}/docs/restart.md
${GEM_LIBDIR}/docs/signals.md
${GEM_LIBDIR}/docs/stats.md
${GEM_LIBDIR}/docs/systemd.md
+${GEM_LIBDIR}/docs/testing_benchmarks_local_files.md
+${GEM_LIBDIR}/docs/testing_test_rackup_ci_files.md
${GEM_LIBDIR}/ext/puma_http11/PumaHttp11Service.java
${GEM_LIBDIR}/ext/puma_http11/ext_help.h
${GEM_LIBDIR}/ext/puma_http11/extconf.rb
@@ -63,13 +65,14 @@ ${GEM_LIBDIR}/lib/puma/io_buffer.rb
${GEM_LIBDIR}/lib/puma/jruby_restart.rb
${GEM_LIBDIR}/lib/puma/json_serialization.rb
${GEM_LIBDIR}/lib/puma/launcher.rb
+${GEM_LIBDIR}/lib/puma/launcher/bundle_pruner.rb
+${GEM_LIBDIR}/lib/puma/log_writer.rb
${GEM_LIBDIR}/lib/puma/minissl.rb
${GEM_LIBDIR}/lib/puma/minissl/context_builder.rb
${GEM_LIBDIR}/lib/puma/null_io.rb
${GEM_LIBDIR}/lib/puma/plugin.rb
${GEM_LIBDIR}/lib/puma/plugin/tmp_restart.rb
${GEM_LIBDIR}/lib/puma/puma_http11.${RUBY_DLEXT}
-${GEM_LIBDIR}/lib/puma/queue_close.rb
${GEM_LIBDIR}/lib/puma/rack/builder.rb
${GEM_LIBDIR}/lib/puma/rack/urlmap.rb
${GEM_LIBDIR}/lib/puma/rack_default.rb
Index: pkgsrc/www/ruby-puma/distinfo
diff -u pkgsrc/www/ruby-puma/distinfo:1.31 pkgsrc/www/ruby-puma/distinfo:1.32
--- pkgsrc/www/ruby-puma/distinfo:1.31 Wed Aug 31 15:46:43 2022
+++ pkgsrc/www/ruby-puma/distinfo Sun Dec 4 16:26:47 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.31 2022/08/31 15:46:43 taca Exp $
+$NetBSD: distinfo,v 1.32 2022/12/04 16:26:47 taca Exp $
-BLAKE2s (puma-5.6.5.gem) = 54d665b368a4446990557ea146e4ab26fb09ada9e9aef57f4ddaad323761c6db
-SHA512 (puma-5.6.5.gem) = 8d7c655929ef8736c6ae8549d3b6d716364acde8fa3f3d1b3d0893edda7c58b76fd0ef6fc08d936e58f49d32619cd68c485b52f28cb79a4981149aedc4041d37
-Size (puma-5.6.5.gem) = 208384 bytes
+BLAKE2s (puma-6.0.0.gem) = 88ed5ae6baa7b6993878a3b3da863efa5cd387082edf745057015923c3fb1b79
+SHA512 (puma-6.0.0.gem) = 0866209e8ce3ec935cd1ed99180ecbf7cdc6921f9dc4977ec6c25e8757747d045b1072bbef9bd420cfcc580423037b737fb2dd6f5c2d3c8361d6aace47d7a781
+Size (puma-6.0.0.gem) = 218112 bytes
Home |
Main Index |
Thread Index |
Old Index