From: "Kent Fredric" <kentnl@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mojolicious/
Date: Thu, 13 Aug 2020 02:25:23 +0000 (UTC) [thread overview]
Message-ID: <1597285395.15eee19e9de58906443539c515f28cd83a84201a.kentnl@gentoo> (raw)
commit: 15eee19e9de58906443539c515f28cd83a84201a
Author: Kent Fredric <kentnl <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 13 02:22:47 2020 +0000
Commit: Kent Fredric <kentnl <AT> gentoo <DOT> org>
CommitDate: Thu Aug 13 02:23:15 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15eee19e
dev-perl/Mojolicious: Bump to version 8.500.0
Upstream:
- Make minimum Perl 5.16
- Mojo::Base now enables various perl 5.16 features.
- Handle Mojolicious::Command invocation to make "mojo generate
lite_app" work like "mojo generate lite-app"
- Add experimental Mojo::DOM::CSS ':any-link' pseudo-class support
- Add experimental Mojo::DOM::CSS case-sensitive attribute selectors
like [foo="bar" s]
- Mojo::DOM::CSSS rename of experimental ":matches" to ":is"
- Fix security issue allowing _method query params to be used with GET
requests
- Remove deprecated argument handling in Mojo::Promise->new
- Mojo::Promise->all_settled no longer experimental
- Mojolicious::Types {content,file}_types no longer experimental
- Mojo::IOLoop::Subprocess 'cleanup' event no longer experimental
- Mojo::IOLoop::Subprocess now uses JSON for IPC serialization instead
of Storable, for efficiency.
- Add Mojo::IOLoop::Subprocess->exit_code
- Mojo::Promise now warns when an unhandled rejected promise is
destroyed
- Don't unnecessarily create new promises in Mojo::Promise->resolve
- Fix a promise chaining bug in Mojo::Promise
Security:
- Previous versions permitted an HTTP GET request to pass a query
parameter _method=POST, and the code would then get routed through the
POST handler, even though the security models for allowing POST and
GET can be quite different, especially if you're trying to prevent
people make XSS attacks on your domain.
https://github.com/mojolicious/mojo/commit/3c1c99a7131a1419d8d355a6083c31a7f9ca7ba0
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric <kentnl <AT> gentoo.org>
dev-perl/Mojolicious/Manifest | 1 +
dev-perl/Mojolicious/Mojolicious-8.500.0.ebuild | 33 +++++++++++++++++++++++++
2 files changed, 34 insertions(+)
diff --git a/dev-perl/Mojolicious/Manifest b/dev-perl/Mojolicious/Manifest
index 7e4fa2a64a5..f92d900c9dc 100644
--- a/dev-perl/Mojolicious/Manifest
+++ b/dev-perl/Mojolicious/Manifest
@@ -9,3 +9,4 @@ DIST Mojolicious-8.10.tar.gz 754007 BLAKE2B 2ac7887e431598e7347999180a5d9e46c76a
DIST Mojolicious-8.20.tar.gz 764063 BLAKE2B 846bb3cfeac502d808f28f26921a73e09587df9a792ffb737cce9f8d2cdd5224f563a79aebdae67f8df50fee8bade687e875cf056510d26960b7852aad128326 SHA512 d5d178b428fc9df815106811c197f886845591819228aad2ef14cb6fad8c82e04479d434b4e4c7d2da042d868d624de7f2a0381ff0d1f82b7b60638feb4174d3
DIST Mojolicious-8.30.tar.gz 772067 BLAKE2B b7f21b780a113aea3978968979e67442664104b15c6711d7f68d2dcb068fbb005135acf1845b0aeb4d43c2158672aab853aa862ba2ed1889242266c9ce80733f SHA512 1823a095df339ccdfe74395bb3066627bd5e2a4e9e1b8d907ff716ef511bd834e09c0aa703a1e51f675d2125f2848a25fa4efb2f48f9c5dcbe1dc8a1d0c48ff5
DIST Mojolicious-8.40.tar.gz 776844 BLAKE2B 6fc2224d55c625cea4eae39fe440903a3924054f07755512f9d6ce7c17aec5152da8999a5de0a30f71a8deab931bd781374c4a0929f7fd65cb3dea5d0a1a89a4 SHA512 7a086f2d195798acb0697595575860ceb111a0d22062637e48fec087b2de19a504425d626b9fa2d4b3bb2ba3d6f63dc703e5acb8a3bd39ba73ea452e07d1c1dc
+DIST Mojolicious-8.50.tar.gz 777007 BLAKE2B 858e7b1f8133ba093e025f9de2f27958063e18eb6f5b09c9928ad2533ef2de19b753e44dc8c3d23f63c4f6b80009c7caaafcdfb419c7b687bec806618d9290c2 SHA512 29864baefb9c7786c77e371c6e29a8f811e434815c07ea265804431cbe37ed8bfcbb7b8bd6a0cfd45ae5aca8e53225121d9f30cd46cac1e6e87ae042d791c6b5
diff --git a/dev-perl/Mojolicious/Mojolicious-8.500.0.ebuild b/dev-perl/Mojolicious/Mojolicious-8.500.0.ebuild
new file mode 100644
index 00000000000..c5d8b955cc6
--- /dev/null
+++ b/dev-perl/Mojolicious/Mojolicious-8.500.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DIST_AUTHOR=SRI
+DIST_VERSION=8.50
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="Real-time web framework"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE="test minimal"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ !minimal? (
+ >=dev-perl/EV-4.0.0
+ )
+ >=virtual/perl-IO-Socket-IP-0.370.0
+ >=virtual/perl-Scalar-List-Utils-1.410.0
+"
+BDEPEND="${RDEPEND}
+ virtual/perl-ExtUtils-MakeMaker
+ test? (
+ virtual/perl-Test-Simple
+ )
+"
+PERL_RM_FILES=(
+ t/pod.t
+ t/pod_coverage.t
+)
next reply other threads:[~2020-08-13 2:25 UTC|newest]
Thread overview: 76+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-13 2:25 Kent Fredric [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-09-01 5:45 [gentoo-commits] repo/gentoo:master commit in: dev-perl/Mojolicious/ Arthur Zamarin
2025-08-18 14:08 Sam James
2025-07-12 14:24 Arthur Zamarin
2025-07-04 19:01 Sam James
2025-06-06 3:44 Sam James
2025-01-12 13:16 Sam James
2025-01-12 12:58 Sam James
2025-01-12 12:58 Sam James
2025-01-12 12:58 Sam James
2024-11-27 7:42 Sam James
2024-11-14 2:04 Sam James
2024-10-11 3:39 Sam James
2024-06-25 4:14 Sam James
2024-06-25 4:07 Sam James
2024-06-25 4:07 Sam James
2024-06-09 21:08 Sam James
2024-05-17 4:48 Sam James
2024-05-02 1:36 Sam James
2024-02-02 14:17 Arthur Zamarin
2024-02-02 13:34 Arthur Zamarin
2024-02-02 3:58 Sam James
2024-01-11 9:38 Sam James
2023-12-19 5:19 Sam James
2023-10-29 1:58 Sam James
2023-09-12 0:43 Sam James
2023-06-20 4:35 Sam James
2023-06-20 4:14 Sam James
2022-02-19 9:00 Arthur Zamarin
2022-02-19 7:05 Arthur Zamarin
2022-02-19 3:41 Sam James
2022-02-19 3:02 Sam James
2021-11-16 20:33 Andreas K. Hüttel
2021-11-16 20:33 Andreas K. Hüttel
2021-09-26 22:16 Marek Szuba
2021-08-25 6:00 Agostino Sarubbo
2021-08-25 5:28 Agostino Sarubbo
2021-07-26 6:24 Sam James
2021-07-15 21:42 Sam James
2021-07-15 21:39 Sam James
2021-07-15 21:33 Sam James
2021-07-08 19:33 Andreas K. Hüttel
2021-07-08 19:33 Andreas K. Hüttel
2020-08-13 2:49 Kent Fredric
2020-08-13 1:41 Kent Fredric
2020-08-13 0:44 Kent Fredric
2020-08-13 0:33 Kent Fredric
2020-08-13 0:11 Kent Fredric
2020-08-12 23:38 Kent Fredric
2020-08-12 23:19 Kent Fredric
2020-08-12 23:09 Kent Fredric
2020-08-12 22:38 Kent Fredric
2020-08-12 21:19 Kent Fredric
2020-08-12 21:19 Kent Fredric
2020-04-15 9:53 Kent Fredric
2018-09-01 19:01 Thomas Deutschmann
2018-08-19 18:45 Matt Turner
2018-08-19 18:39 Matt Turner
2018-07-15 15:51 Mikle Kolyada
2018-07-15 2:26 Kent Fredric
2017-11-19 8:36 Kent Fredric
2017-08-09 9:18 Sergei Trofimovich
2017-08-03 8:20 Sergei Trofimovich
2017-06-15 16:27 Markus Meier
2017-06-02 1:04 Kent Fredric
2017-05-29 19:17 Kent Fredric
2017-05-07 11:05 Mikle Kolyada
2017-04-07 15:59 Kent Fredric
2017-03-19 6:05 Kent Fredric
2017-01-26 3:12 Kent Fredric
2017-01-19 14:17 Kent Fredric
2017-01-17 3:52 Kent Fredric
2017-01-07 21:14 Kent Fredric
2016-12-21 4:22 Kent Fredric
2016-12-04 19:37 Kent Fredric
2016-05-21 0:36 Andreas Hüttel
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1597285395.15eee19e9de58906443539c515f28cd83a84201a.kentnl@gentoo \
--to=kentnl@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox