From mike-reportbug at cyber.com.au Tue Jan 13 03:54:14 2026 From: mike-reportbug at cyber.com.au (Mike Abrahall) Date: Tue, 13 Jan 2026 14:54:14 +1100 (AEDT) Subject: [pkg-uWSGI-devel] Bug#1125369: uwsgi-plugin-ruby: Incompatibility with ruby-rack 3.x causing some http headers to format wrong Message-ID: <20260113035453.3834483A6@heavy.cyber.com.au> Package: uwsgi-plugin-ruby Version: 2.0.28+8+0.0.2+b1 Severity: normal Dear Maintainer, I've been running Redmine through uwsgi (better socket activation than Passenger) and noticed that some of the cookies being sent to the browser were wrong. I'd expect a header like: Set-Cookie: autologin=[secret];secure Instead I got a header like: Set-Cookie: ["autologin=[secret];secure"] I believe this is the exact same bug with Passenger: https://github.com/phusion/passenger/issues/2503 And the fix for that is here: https://github.com/phusion/passenger/commit/7353892025f245b1f29a35d4337cc0a152aa1bb8 Also note the ruby-rack upgrade guide mentions this: https://github.com/rack/rack/blob/v3.1.18/UPGRADE-GUIDE.md#:~:text=There%20is%20one%20changed%20feature%20in%20Rack%203%20which%20is%20not%20backwards%20compatible%3A > There is one changed feature in Rack 3 which is not backwards compatible: > > - Response header values can be an Array to handle multiple values (and no longer supports \n encoded headers). > > You can achieve compatibility by using Rack::Response#add_header which provides an interface for adding headers without concern for the underlying format. I've worked around this for my own purposes by adapting the code block suggested by 'pcantrell' in the above mentioned Passenger bug report: https://github.com/phusion/passenger/issues/2503#issuecomment-2370192659 But as I understand it, this issue should be solved at the uwsgi/rack layer, not in the ruby application. -- System Information: Debian Release: 13.3 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable-security'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 6.12.57+deb13-cloud-amd64 (SMP w/2 CPU threads; PREEMPT) Locale: LANG=C.UTF-8, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE not set Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages uwsgi-plugin-ruby depends on: ii libc6 2.41-12+deb13u1 ii libruby3.3 3.3.8-2 ii ruby-rack 3.1.18-1~deb13u1 ii uwsgi-core [uwsgi-abi-fd03c85edfee33327ac760f246543e10] 2.0.28-9 uwsgi-plugin-ruby recommends no packages. uwsgi-plugin-ruby suggests no packages. -- no debconf information From niol at zincube.net Tue Jan 13 13:23:37 2026 From: niol at zincube.net (Alexandre Rossi) Date: Tue, 13 Jan 2026 14:23:37 +0100 Subject: [pkg-uWSGI-devel] Bug#1125369: uwsgi-plugin-ruby: Incompatibility with ruby-rack 3.x causing some http headers to format wrong In-Reply-To: <20260113035453.3834483A6@heavy.cyber.com.au> References: <20260113035453.3834483A6@heavy.cyber.com.au> <20260113035453.3834483A6@heavy.cyber.com.au> Message-ID: Control: reassign -1 src:uwsgi Control: affects -1 uwsgi-plugin-ruby Control: tag -1 patch Control: forwarded -1 https://github.com/unbit/uwsgi/pull/2749 Hi, > I've been running Redmine through uwsgi (better socket activation than > Passenger) and noticed that some of the cookies being sent to the browser > were wrong. > I'd expect a header like: > > Set-Cookie: autologin=[secret];secure > > Instead I got a header like: > > Set-Cookie: ["autologin=[secret];secure"] > > > There is one changed feature in Rack 3 which is not backwards compatible: > > > > - Response header values can be an Array to handle multiple values (and no longer supports \n encoded headers). > > > > You can achieve compatibility by using Rack::Response#add_header which provides an interface for adding headers without concern for the underlying format. > > > I've worked around this for my own purposes by adapting the code block > suggested by 'pcantrell' in the above mentioned Passenger bug report: > https://github.com/phusion/passenger/issues/2503#issuecomment-2370192659 > But as I understand it, this issue should be solved at the uwsgi/rack > layer, not in the ruby application. Thanks for the detailed bug report and analysis. Here is a possible fix to this, can you confirm? Or do you need guidance to rebuild the rack plugin? Thanks, Alex diff --git i/plugins/rack/rack_plugin.c w/plugins/rack/rack_plugin.c index 792cc4dc..c00ad022 100644 --- i/plugins/rack/rack_plugin.c +++ w/plugins/rack/rack_plugin.c @@ -739,14 +739,19 @@ VALUE send_header(VALUE obj, VALUE headers, int argc, const VALUE *argv, VALUE b struct wsgi_request *wsgi_req = current_wsgi_req(); - VALUE hkey, hval; + VALUE hkey, hval, hval_raw; //uwsgi_log("HEADERS %d\n", TYPE(obj)); if (TYPE(obj) == T_ARRAY) { if (RARRAY_LEN(obj) >= 2) { - hkey = rb_obj_as_string( RARRAY_PTR(obj)[0]); - hval = rb_obj_as_string( RARRAY_PTR(obj)[1]); - + hkey = rb_obj_as_string(RARRAY_PTR(obj)[0]); + hval_raw = RARRAY_PTR(obj)[1]; + if (TYPE(hval_raw) == T_ARRAY) { + hval = rb_funcall(hval_raw, rb_intern("join"), 1, rb_str_new_static(", ", 2)); + } + else { + hval = rb_obj_as_string( hval_raw); + } } else { goto clear; diff --git i/t/rack/app.ru w/t/rack/app.ru index 4603375e..9344c4bc 100644 --- i/t/rack/app.ru +++ w/t/rack/app.ru @@ -1,7 +1,10 @@ class App - def call(environ) - [200, {"content-type" => "text/plain"}, ['Hello']] + def call(env) + headers = {"content-type" => "text/plain"} + Rack::Utils.set_cookie_header!(headers, "country", { :value => "UK", :path => "/"}) + Rack::Utils.set_cookie_header!(headers, "autologin", { :value => "yes", :path => "/", :secure => true}) + [200, headers, ["Hello"]] end end diff --git i/t/runner w/t/runner index b59966b5..c9957959 100755 --- i/t/runner +++ w/t/runner @@ -251,8 +251,14 @@ class UwsgiTest(unittest.TestCase): ] ) - self.assert_GET_body("/", "Hello") + with requests.get(f"http://{UWSGI_HTTP}/") as r: + self.assertEqual(r.text, "Hello") + self.assertEqual(r.headers["Content-type"], "text/plain") + self.assertEqual( + r.headers["Set-Cookie"], + "country=UK; path=/, autologin=yes; path=/; secure", + ) if __name__ == "__main__": - unittest.main() + unittest.main(verbosity=2) From owner at bugs.debian.org Tue Jan 13 13:25:04 2026 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Tue, 13 Jan 2026 13:25:04 +0000 Subject: [pkg-uWSGI-devel] Processed: Re: Bug#1125369: uwsgi-plugin-ruby: Incompatibility with ruby-rack 3.x causing some http headers to format wrong References: <20260113035453.3834483A6@heavy.cyber.com.au> Message-ID: Processing control commands: > reassign -1 src:uwsgi Bug #1125369 [uwsgi-plugin-ruby] uwsgi-plugin-ruby: Incompatibility with ruby-rack 3.x causing some http headers to format wrong Bug reassigned from package 'uwsgi-plugin-ruby' to 'src:uwsgi'. No longer marked as found in versions uwsgi-plugin-ruby/0.0.2. Ignoring request to alter fixed versions of bug #1125369 to the same values previously set > affects -1 uwsgi-plugin-ruby Bug #1125369 [src:uwsgi] uwsgi-plugin-ruby: Incompatibility with ruby-rack 3.x causing some http headers to format wrong Added indication that 1125369 affects uwsgi-plugin-ruby > tag -1 patch Bug #1125369 [src:uwsgi] uwsgi-plugin-ruby: Incompatibility with ruby-rack 3.x causing some http headers to format wrong Added tag(s) patch. > forwarded -1 https://github.com/unbit/uwsgi/pull/2749 Bug #1125369 [src:uwsgi] uwsgi-plugin-ruby: Incompatibility with ruby-rack 3.x causing some http headers to format wrong Set Bug forwarded-to-address to 'https://github.com/unbit/uwsgi/pull/2749'. -- 1125369: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1125369 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From ftpmaster at ftp-master.debian.org Sun Jan 18 10:30:44 2026 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Sun, 18 Jan 2026 10:30:44 +0000 Subject: [pkg-uWSGI-devel] Processing of uwsgi_2.0.31-2_source.changes Message-ID: uwsgi_2.0.31-2_source.changes uploaded successfully to localhost along with the files: uwsgi_2.0.31-2.dsc uwsgi_2.0.31-2.debian.tar.xz uwsgi_2.0.31-2_source.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org) From ftpmaster at ftp-master.debian.org Sun Jan 18 11:13:33 2026 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Sun, 18 Jan 2026 11:13:33 +0000 Subject: [pkg-uWSGI-devel] uwsgi_2.0.31-2_source.changes ACCEPTED into unstable Message-ID: Thank you for your contribution to Debian. Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Fri, 16 Jan 2026 21:51:30 +0100 Source: uwsgi Architecture: source Version: 2.0.31-2 Distribution: unstable Urgency: medium Maintainer: uWSGI packaging team Changed-By: Alexandre Rossi Closes: 1125369 Changes: uwsgi (2.0.31-2) unstable; urgency=medium . * fix pypy tests for uwsgi-plugin-pypy pkg * rack plugin: fix bad headers with multiple values (Closes: #1125369) * declare compliance to policy 4.7.3 (remove Priority field in d/control) * remove now alien override library-not-linked-against-libc * drop kfreebsd-specific dep rules (arch removed some time ago) * do not install vcs control file in binary package uwsgi-src Checksums-Sha1: 66c775bb3debaafc58eb39a20851c39c519583e1 3422 uwsgi_2.0.31-2.dsc dd67dc049ef76cbe9e0267ca5e633cb618b99675 57076 uwsgi_2.0.31-2.debian.tar.xz 49e927b398e755e7f0db9ec9f8bda0ff58209d2f 9703 uwsgi_2.0.31-2_source.buildinfo Checksums-Sha256: 87f80b4c92632ff12c6c39866f38f5d007d5fe045e02039089058c868508c856 3422 uwsgi_2.0.31-2.dsc 9c93252eb58222d2a712dc3709db2ccc856eebca38d3f287f57d198a426f4cb9 57076 uwsgi_2.0.31-2.debian.tar.xz 5ec21f086cc211f3acfcaa9671c13735cabe132bbde80f656b830a7fb491656b 9703 uwsgi_2.0.31-2_source.buildinfo Files: b821c418b43c216cd608dca3c3086dc0 3422 httpd optional uwsgi_2.0.31-2.dsc dd267ac3fb2f6e94466c426da2dfeafc 57076 httpd optional uwsgi_2.0.31-2.debian.tar.xz d322872814b0b279fa0d64b876be51bd 9703 httpd optional uwsgi_2.0.31-2_source.buildinfo -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEj23hBDd/OxHnQXSHMfMURUShdBoFAmlstO4ACgkQMfMURUSh dBo0Gg/9EsgPZYHRReUO1PdPMWX9eUUbNYgnCB9Ppg6H0dqqqIDjelWEK39lQ9wE GXMk7nPKrPoyfmqezFURNlGngN9XU7Jkf1tsQ7GtlqH+ZsSquT8iNiJnPT2MYPAI uV1WKXcyoJ0JwtvA49qT4025QX/+1CSpTkywDNsprN/flJh9vqsz3w9f/Ch8g1W3 C1OUsaoMjrBC+97FvaCR+ytek15QhDr8IhftIR8Cvjqq18lwllkZL/XoVYiZ2eLQ K1ck49cSDxu7MxiUDUTGms8LR+rtuWhyf67ly2BLdjjek77rwi3GN1vwIib+1MRY x/FkvT/0BcznxHGvVOgqAz5KfR/UHgB/p5f6YVpydwTO5yf31CEeQYvYY0Fmyleo 4ny7IaZCriIZcGwhabMPKwvkj/UI/w7+sWCOd1VjMOyBpBLazFpkNPyZyDBDlmtf QL36qOrSJOqGLSwtrqpZkDAGa3mVLPlAvrhgvi/fBYcTSEkUoklgRHVUvmZXhvV4 8AfrKc4Es7RUEob7ztQCjEQZh4j3STVC4n2+LyJc37qpJ0qYLMbyz0aBCUV5Fd+L H3ulU8waZkXWJSOvJc/e7pjug/OreZzGvqJoJd2auGN32SPWLD3NRkChNnUwVd1m 8zjHXv05+iIEe+fzBu56kZC/uAQonj5WgZN09+lEt3aO3UqaRck= =GRqs -----END PGP SIGNATURE----- -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 228 bytes Desc: not available URL: From owner at bugs.debian.org Sun Jan 18 11:15:02 2026 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Sun, 18 Jan 2026 11:15:02 +0000 Subject: [pkg-uWSGI-devel] Bug#1125369: marked as done (uwsgi-plugin-ruby: Incompatibility with ruby-rack 3.x causing some http headers to format wrong) References: <20260113035453.3834483A6@heavy.cyber.com.au> Message-ID: Your message dated Sun, 18 Jan 2026 11:13:33 +0000 with message-id and subject line Bug#1125369: fixed in uwsgi 2.0.31-2 has caused the Debian Bug report #1125369, regarding uwsgi-plugin-ruby: Incompatibility with ruby-rack 3.x causing some http headers to format wrong to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 1125369: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1125369 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Mike Abrahall Subject: uwsgi-plugin-ruby: Incompatibility with ruby-rack 3.x causing some http headers to format wrong Date: Tue, 13 Jan 2026 14:54:14 +1100 (AEDT) Size: 4714 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#1125369: fixed in uwsgi 2.0.31-2 Date: Sun, 18 Jan 2026 11:13:33 +0000 Size: 6943 URL: From alexandre.detiste at gmail.com Mon Jan 19 09:20:03 2026 From: alexandre.detiste at gmail.com (Alexandre Detiste) Date: Mon, 19 Jan 2026 10:20:03 +0100 Subject: [pkg-uWSGI-devel] Bug#1125939: uwsgi-plugin-ruby: autopkgtest fails with new uwsgi 2.0.31-2 Message-ID: <176881440386.4977.8967861910886803662.reportbug@quieter> Source: uwsgi-plugin-ruby Version: 0.0.2 Severity: serious Justification: FTBFS X-Debbugs-Cc: Alexandre Rossi Hi, This package autopkgtest fails with the new uwsgi. Tagging this bug serious to allow uwsgi to migrate at the latest after uwsgi-plugin-ruby autoremoval. Greetings https://qa.debian.org/excuses.php?package=uwsgi 47s *** no app loaded. going in full dynamic mode *** 47s *** uWSGI is running in multiple interpreter mode *** 47s spawned uWSGI worker 1 (and the only) (pid: 1584, cores: 1) 47s 47s ok 47s 47s ====================================================================== 47s FAIL: test_rack_helloworld (__main__.UwsgiTest.test_rack_helloworld) 47s ---------------------------------------------------------------------- 47s Traceback (most recent call last): 47s File "/usr/src/uwsgi/t/runner", line 257, in test_rack_helloworld 47s self.assertEqual( 47s ~~~~~~~~~~~~~~~~^ 47s r.headers["Set-Cookie"], 47s ^^^^^^^^^^^^^^^^^^^^^^^^ 47s "country=UK; path=/, autologin=yes; path=/; secure", 47s ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 47s ) 47s ^ 47s AssertionError: '["country=UK; path=/", "autologin=yes; path=/; secure"]' != 'country=UK; path=/, autologin=yes; path=/; secure' 47s - ["country=UK; path=/", "autologin=yes; path=/; secure"] 47s ? -- - - -- 47s + country=UK; path=/, autologin=yes; path=/; secure 47s 47s 47s ---------------------------------------------------------------------- 47s Ran 9 tests in 0.265s 47s 47s FAILED (failures=1, skipped=7) 47s autopkgtest [04:23:26]: test integration: -----------------------] -- System Information: Debian Release: forky/sid APT prefers testing APT policy: (501, 'testing'), (450, 'unstable'), (400, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 6.17.13+deb14-amd64 (SMP w/4 CPU threads; PREEMPT) Kernel taint flags: TAINT_WARN Locale: LANG=fr_BE.UTF-8, LC_CTYPE=fr_BE.UTF-8 (charmap=UTF-8), LANGUAGE=fr_BE:fr Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled From niol at zincube.net Mon Jan 19 10:28:24 2026 From: niol at zincube.net (Alexandre Rossi) Date: Mon, 19 Jan 2026 11:28:24 +0100 Subject: [pkg-uWSGI-devel] Bug#1125939: uwsgi-plugin-ruby: autopkgtest fails with new uwsgi 2.0.31-2 In-Reply-To: <176881440386.4977.8967861910886803662.reportbug@quieter> References: <176881440386.4977.8967861910886803662.reportbug@quieter> <176881440386.4977.8967861910886803662.reportbug@quieter> Message-ID: Hi, > This package autopkgtest fails with the new uwsgi. > > Tagging this bug serious to allow uwsgi > to migrate at the latest after uwsgi-plugin-ruby autoremoval. This is expected and the same as #1125369 but now the autopkgtest detects it. This requires either a binNMU of src:uwsgi-plugin-ruby or a new upload which will take into account the new code in the rack plugin. I'll prepare a new upload for sponsorship ASAP. Thanks, Alex From niol at zincube.net Mon Jan 19 10:28:24 2026 From: niol at zincube.net (Alexandre Rossi) Date: Mon, 19 Jan 2026 11:28:24 +0100 Subject: [pkg-uWSGI-devel] Bug#1125939: uwsgi-plugin-ruby: autopkgtest fails with new uwsgi 2.0.31-2 In-Reply-To: <176881440386.4977.8967861910886803662.reportbug@quieter> References: <176881440386.4977.8967861910886803662.reportbug@quieter> <176881440386.4977.8967861910886803662.reportbug@quieter> Message-ID: Hi, > This package autopkgtest fails with the new uwsgi. > > Tagging this bug serious to allow uwsgi > to migrate at the latest after uwsgi-plugin-ruby autoremoval. This is expected and the same as #1125369 but now the autopkgtest detects it. This requires either a binNMU of src:uwsgi-plugin-ruby or a new upload which will take into account the new code in the rack plugin. I'll prepare a new upload for sponsorship ASAP. Thanks, Alex From owner at bugs.debian.org Mon Jan 19 20:21:02 2026 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Mon, 19 Jan 2026 20:21:02 +0000 Subject: [pkg-uWSGI-devel] Processed: tagging 1125939, tagging 1125947 References: <1768853947-947506150-bts> Message-ID: Processing commands for control at bugs.debian.org: > tags 1125939 + sid forky Bug #1125939 [src:uwsgi-plugin-ruby] uwsgi-plugin-ruby: autopkgtest fails with new uwsgi 2.0.31-2 Added tag(s) forky and sid. > tags 1125947 + sid forky Bug #1125947 [src:breezy] Broken autopkgtests with testtools 2.8.2 Added tag(s) forky and sid. > thanks Stopping processing here. Please contact me if you need assistance. -- 1125939: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1125939 1125947: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1125947 Debian Bug Tracking System Contact owner at bugs.debian.org with problems From ftpmaster at ftp-master.debian.org Mon Jan 26 07:17:41 2026 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Mon, 26 Jan 2026 07:17:41 +0000 Subject: [pkg-uWSGI-devel] Processing of uwsgi-plugin-ruby_0.0.3_source.changes Message-ID: uwsgi-plugin-ruby_0.0.3_source.changes uploaded successfully to localhost along with the files: uwsgi-plugin-ruby_0.0.3.dsc uwsgi-plugin-ruby_0.0.3.tar.xz uwsgi-plugin-ruby_0.0.3_source.buildinfo Greetings, Your Debian queue daemon (running on host usper.debian.org) From ftpmaster at ftp-master.debian.org Mon Jan 26 07:19:21 2026 From: ftpmaster at ftp-master.debian.org (Debian FTP Masters) Date: Mon, 26 Jan 2026 07:19:21 +0000 Subject: [pkg-uWSGI-devel] uwsgi-plugin-ruby_0.0.3_source.changes ACCEPTED into unstable Message-ID: Thank you for your contribution to Debian. Accepted: -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Format: 1.8 Date: Mon, 19 Jan 2026 13:17:07 +0100 Source: uwsgi-plugin-ruby Architecture: source Version: 0.0.3 Distribution: unstable Urgency: medium Maintainer: uWSGI packaging team Changed-By: Alexandre Rossi Closes: 1125939 Changes: uwsgi-plugin-ruby (0.0.3) unstable; urgency=medium . [ Jonas Smedegaard ] * update copyright info: fix license shortname; use field License-Grant; tidy copyright holders * update copyright info: use field Reference; update coverage * remove myself as uploader . [ Alexandre Rossi ] * declare compliance to policy 4.7.3 (no change) * New upload to trigger a rebuild with rack plugin fix (Closes: #1125939) Checksums-Sha1: 0a18da48bc2a27ecb2a2607fe2dace4aff096f89 1857 uwsgi-plugin-ruby_0.0.3.dsc 39f0f906dabdf810dc3d608add02ed47d93f8df5 3276 uwsgi-plugin-ruby_0.0.3.tar.xz 016b0345879b5f23b72877a7c7b19eea7d5aaefb 7842 uwsgi-plugin-ruby_0.0.3_source.buildinfo Checksums-Sha256: e6e7a47aa64bbac75b64885a459526cb63972a641c7654a509c578c3b71c838f 1857 uwsgi-plugin-ruby_0.0.3.dsc ad7757aed795680648a2e68cc1c87222e319912a0cce82c8dc7c2483ca26e87a 3276 uwsgi-plugin-ruby_0.0.3.tar.xz b17a0467af8cbf6e46ba0acef519409c7d9cf9421444e79b41f1bd30eae51186 7842 uwsgi-plugin-ruby_0.0.3_source.buildinfo Files: 1c629d7b435df12ab604087962648e81 1857 httpd optional uwsgi-plugin-ruby_0.0.3.dsc dc7594f82295e378f930fe1ddf598839 3276 httpd optional uwsgi-plugin-ruby_0.0.3.tar.xz 63fe7caeae4adbf08d0a015875cd5524 7842 httpd optional uwsgi-plugin-ruby_0.0.3_source.buildinfo -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEj23hBDd/OxHnQXSHMfMURUShdBoFAml3EuQACgkQMfMURUSh dBoG5Q/+Jvt1PzdZMDH5Iy9QiteiYy/fi309Pjn2wuSeG4o8FOFVDmFnvZvYJSsI I7Efcwg06JRxqx1Pq7EIBGrFN+Ly5Sd/eedrV7A2VzYXDPv5glQdxtQGZNKa7NVD nsRBdv/FDmZGQoNuiuejpFz6wu4ckM6VqiUBRRgpfQG9rlYzRtfbPcm5N331ZcwD 1D8TEKUIlkQ1X1d6Fc9S7755+UtYhDh9o0f5VQffJ7+UBvFILzouL62NBCw8uTsB rI5WMIqDu3+oIo4FWNGE6e+4hQ7fnfdDlJ6EslGTE/J6NfW0J3GVYYsbTD8iGAp8 +W0ikcqm0QKMUzuxIWiIvDo9ZWbpI1b/i0rT+8hhB3YIYr+uz13Of1BSMXCNAeGE 6G4Zo60TXW5t2jUiWKa46i3HLGxPhRtwVsgG/EHtc/iXeVVDCJ2Lik9eKedl/tH+ 1aweblWczSZQA+2WlCWnUItXF5poaPxGfYvp/n+iRdJhe6AFcAiy97Of0mqi8zlv DKd7RwodKSVkrWsgouSnTRJHgrnnghjUCB7QEofy2aEvycPIBW1lcARpOEjS0UzE LvDTMeSHN5YW9/wrxuHeFEZR9gQoydd1WTxcyuJM4BR53ce0JvLT7zX04mp7eROw 5wycN2ZkJRm70eekqaulngJvOdPn7y/emRhedsyzXIp/OCEZA1U= =rb+l -----END PGP SIGNATURE----- -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 228 bytes Desc: not available URL: From owner at bugs.debian.org Mon Jan 26 07:37:09 2026 From: owner at bugs.debian.org (Debian Bug Tracking System) Date: Mon, 26 Jan 2026 07:37:09 +0000 Subject: [pkg-uWSGI-devel] Bug#1125939: marked as done (uwsgi-plugin-ruby: autopkgtest fails with new uwsgi 2.0.31-2) References: <176881440386.4977.8967861910886803662.reportbug@quieter> Message-ID: Your message dated Mon, 26 Jan 2026 07:19:21 +0000 with message-id and subject line Bug#1125939: fixed in uwsgi-plugin-ruby 0.0.3 has caused the Debian Bug report #1125939, regarding uwsgi-plugin-ruby: autopkgtest fails with new uwsgi 2.0.31-2 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner at bugs.debian.org immediately.) -- 1125939: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1125939 Debian Bug Tracking System Contact owner at bugs.debian.org with problems -------------- next part -------------- An embedded message was scrubbed... From: Alexandre Detiste Subject: uwsgi-plugin-ruby: autopkgtest fails with new uwsgi 2.0.31-2 Date: Mon, 19 Jan 2026 10:20:03 +0100 Size: 6479 URL: -------------- next part -------------- An embedded message was scrubbed... From: Debian FTP Masters Subject: Bug#1125939: fixed in uwsgi-plugin-ruby 0.0.3 Date: Mon, 26 Jan 2026 07:19:21 +0000 Size: 7062 URL: From noreply at release.debian.org Wed Jan 28 04:39:11 2026 From: noreply at release.debian.org (Debian testing watch) Date: Wed, 28 Jan 2026 04:39:11 +0000 Subject: [pkg-uWSGI-devel] uwsgi-plugin-ruby 0.0.3 MIGRATED to testing Message-ID: FYI: The status of the uwsgi-plugin-ruby source package in Debian's testing distribution has changed. Previous version: 0.0.2 Current version: 0.0.3 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See https://release.debian.org/testing-watch/ for more information. From noreply at release.debian.org Sat Jan 31 04:39:19 2026 From: noreply at release.debian.org (Debian testing watch) Date: Sat, 31 Jan 2026 04:39:19 +0000 Subject: [pkg-uWSGI-devel] uwsgi 2.0.31-2 MIGRATED to testing Message-ID: FYI: The status of the uwsgi source package in Debian's testing distribution has changed. Previous version: 2.0.31-1 Current version: 2.0.31-2 -- This email is automatically generated once a day. As the installation of new packages into testing happens multiple times a day you will receive later changes on the next day. See https://release.debian.org/testing-watch/ for more information.