Revisions of perl-Mojolicious

buildservice-autocommit accepted request 880885 from Dirk Stoecker's avatar Dirk Stoecker (dstoecker) (revision 387)
baserev update by copy to link target
Dirk Stoecker's avatar Dirk Stoecker (dstoecker) accepted request 880882 from Tina Müller's avatar Tina Müller (tinita) (revision 386)
- updated to 9.14
   see /usr/share/doc/packages/perl-Mojolicious/Changes
  9.14  2021-03-23
    - Added EXPERIMENTAL support for :text pseudo-class to Mojo::DOM::CSS.
  9.13  2021-03-22
    - Improved request_id attribute in Mojo::Message::Request to be a little more unique.
    - Fixed Mojolicious::Plugin::Mount to share the logger of the host application.
Dirk Stoecker's avatar Dirk Stoecker (dstoecker) accepted request 880383 from Tina Müller's avatar Tina Müller (tinita) (revision 385)
- updated to 9.12
   see /usr/share/doc/packages/perl-Mojolicious/Changes
  9.12  2021-03-21
    - Improved mojo script startup time slightly with a Mojo::HelloWorld optimization.
    - Improved design of built-in templates.
  9.11  2021-03-20
    - This release contains fixes for security issues, everybody should upgrade!
    - Disabled format detection by default to fix vulnerabilities in many Mojolicious applications. That means some of
      your routes that previously matched "/foo" and "/foo.json", will only match "/foo" after upgrading. From now on you
      will have to explicitly declare the formats your routes are allowed to handle.
        # /foo
        # /foo.html
        # /foo.json
        $r->get('/foo')->to('bar#yada');
      becomes
        $r->get('/foo' => [format => ['html', 'json']])->to('bar#yada', format => undef);
      And if you are certain that your application is not vulnerable, you also have the option to re-enable format
      detection for a route and all its nested routes. Due to the high risk of vulnerabilities, this feature is going to
      be removed again in a future release however.
        my $active = $r->any([format => 1]);
        $active->get('/foo')->to('Test#first');
        $active->put('/bar')->to('Test#second');
    - Improved built-in templates not to show embedded apps in the stash snapshot.
    - Improved built-in development not found page to include tooltips with the compiled regular expressions for each
      route.
    - Improved Mojo::UserAgent to include "Content-Length: 0" with non-GET requests for better compatibility with broken
      web servers.
Sebastian Riedel's avatar Sebastian Riedel (kraih) accepted request 879384 from Tina Müller's avatar Tina Müller (tinita) (revision 384)
- updated to 9.10
   see /usr/share/doc/packages/perl-Mojolicious/Changes
  9.10  2021-03-14
    - Fixed top-level --help and -h options in Mojolicious::Commands.
  9.09  2021-03-13
    - Added comma_separated filter to Mojolicious::Validator.
    - Fixed built-in templates to be a bit more responsive.
    - Fixed filter list handling in Mojolicious::Validator::Validation.
  9.08  2021-03-12
    - Fixed a bug in Test::Mojo where Test::Mojo->new($app) would not work correctly.
  9.07  2021-03-11
    - Improved config override feature to work for Mojolicious::Lite applications.
    - Improved Mojo::UserAgent performance slightly by not including unnecessary "Content-Length: 0" request headers.
Dirk Stoecker's avatar Dirk Stoecker (dstoecker) accepted request 877967 from Tina Müller's avatar Tina Müller (tinita) (revision 383)
- updated to 9.03
   see /usr/share/doc/packages/perl-Mojolicious/Changes
  9.03  2021-03-05
    - Fixed a bug in Mojo::Transaction::WebSocket where finish event handlers would not always get the same number of
      arguments passed.
Dirk Stoecker's avatar Dirk Stoecker (dstoecker) accepted request 876200 from Tina Müller's avatar Tina Müller (tinita) (revision 382)
- updated to 9.02
   see /usr/share/doc/packages/perl-Mojolicious/Changes
  9.02  2021-02-17
    - Fixed finally method in Mojo::Promise to deal correctly with promises returned by the handler.
    - Improved Mojo::Server::Daemon to include random ports in the "Web application available at ..." message.
buildservice-autocommit accepted request 873064 from Sebastian Riedel's avatar Sebastian Riedel (kraih) (revision 381)
baserev update by copy to link target
Sebastian Riedel's avatar Sebastian Riedel (kraih) accepted request 873044 from Tina Müller's avatar Tina Müller (tinita) (revision 380)
- updated to 9.01
   see /usr/share/doc/packages/perl-Mojolicious/Changes
  9.01  2021-02-16
    - Added EXPERIMENTAL color attribute to Mojo::Log.
    - Added EXPERIMENTAL MOJO_LOG_COLOR environment variable to Mojo::Log.
    - Fixed Windows support of network_contains function in Mojo::Util. (jberger)
buildservice-autocommit accepted request 872779 from Sebastian Riedel's avatar Sebastian Riedel (kraih) (revision 379)
baserev update by copy to link target
Sebastian Riedel's avatar Sebastian Riedel (kraih) accepted request 872772 from Tina Müller's avatar Tina Müller (tinita) (revision 378)
- updated to 9.0
   see /usr/share/doc/packages/perl-Mojolicious/Changes
  9.0  2021-02-14
    - Code name "Waffle", this is a major release.
    - Added support for deployment specific plugins.
    - Removed Mojo::IOLoop::Delay.
    - Removed hidden attribute from Mojolicious::Routes.
    - Removed hide and is_hidden methods from Mojolicious::Routes.
    - Removed deprecated success method from Mojo::Transaction.
    - Removed deprecated detour, over, route and via methods from Mojolicious::Routes::Route.
    - Removed deprecated local_address method from Mojo::UserAgent.
    - Removed deprecated tls_ciphers, tls_protocols, tls_verify and tls_version options from Mojo::IOLoop::TLS.
    - Removed deprecated local_address option from Mojo::IOLoop::Client.
    - Removed deprecated config stash value.
    - Changed Mojo::Log to join mutiple log messages with a whitespace instead of a newline.
    - Added is_reserved method to Mojolicious::Routes::Route.
    - Improved Mojolicious::Routes to disallow the use of reserved stash values, such as "/:action", in route patterns.
    - Improved Mojolicious::Routes to throw exceptions for missing controllers.
    - Improved Mojolicious::Routes to throw exceptions for routes with controllers but without action.
    - Improved Mojolicious::Routes to disallow namespace without controller for routing.
    - Improved Mojolicious::Routes to die if auto rendering failed.
    - Improved render method in Mojolicious::Controller to die if no response could be rendered.
    - Improved reply->static helper to die if the requested file does not exist.
    - Improved contextual logging feature in Mojo::Log not to concatenate log messages and context.
    - Improved all_text method in Mojo::DOM to exclude "<script>" and "<style>" from text extraction in HTML documents.
    - Improved error messages in config plugins to be more consistent.
buildservice-autocommit accepted request 871184 from Dirk Stoecker's avatar Dirk Stoecker (dstoecker) (revision 377)
baserev update by copy to link target
Dirk Stoecker's avatar Dirk Stoecker (dstoecker) accepted request 870486 from Tina Müller's avatar Tina Müller (tinita) (revision 376)
- updated to 8.73
   see /usr/share/doc/packages/perl-Mojolicious/Changes
  8.73  2021-02-05
    - Removed finally keyword from check function in Mojo::Exception.
    - Changed arguments of check function in Mojo::Exception to be easier to use with Perl 5.34 try/catch.
    - Removed experimental status from preload_namespaces attribute in Mojolicious.
    - Removed experimental status from any, map, timer and timeout methods in Mojo::Promise.
    - Removed experimental status from extname method in Mojo::File.
    - Removed experimental status from warmup method in Mojolicious.
    - Removed experimental status from load_classes function in Mojo::Loader.
    - Removed experimental status from Mojo::DynamicMethods. Still summons old gods, use at your own risk!
    - Removed experimental status from before_command hook in Mojolicious.
    - Added silent attribute to Mojo::Server::Morbo.
buildservice-autocommit accepted request 867443 from Sebastian Riedel's avatar Sebastian Riedel (kraih) (revision 375)
baserev update by copy to link target
Sebastian Riedel's avatar Sebastian Riedel (kraih) accepted request 867426 from Tina Müller's avatar Tina Müller (tinita) (revision 374)
- updated to 8.72
   see /usr/share/doc/packages/perl-Mojolicious/Changes
  8.72  2021-01-26
    - Deprecated Mojo::UserAgent::local_address in favor of Mojo::UserAgent::socket_options.
    - Deprecated local_address option of connect method in Mojo::IOLoop::Client in favor of socket_options.
    - Deprecated tls_protocols option of connect method in Mojo::IOLoop::Client in favor of tls_options.
    - Deprecated tls_verify option of connect method in Mojo::IOLoop::Client in favor of tls_options.
    - Deprecated tls_protocols option of negotiate method in Mojo::IOLoop::TLS in favor of tls_options.
    - Deprecated tls_ciphers option of negotiate method in Mojo::IOLoop::TLS in favor of tls_options.
    - Deprecated tls_verify option of negotiate method in Mojo::IOLoop::TLS in favor of tls_options.
    - Deprecated tls_version option of negotiate method in Mojo::IOLoop::TLS in favor of tls_options.
    - Deprecated tls_ciphers option of listen method in Mojo::IOLoop::Server in favor of tls_options.
    - Deprecated tls_verify option of listen method in Mojo::IOLoop::Server in favor of tls_options.
    - Deprecated tls_version option of listen method in Mojo::IOLoop::Server in favor of tls_options.
    - Added support for trusted reverse proxies. (jberger)
    - Added network_contains function to Mojo::Util. (jberger)
    - Added trusted_proxies attribute to Mojo::Server and Mojo::Message::Request. (jberger)
    - Added socket_options method to Mojo::UserAgent.
    - Added build_server method to Mojolicious::Command::daemon and Mojolicious::Command::prefork. (jberger)
    - Added trusted_proxies option to Hynotoad. (jberger)
    - Added socket_options and tls_options options to connect method in Mojo::IOLoop::Client.
    - Added tls_options option to negotiate method in Mojo::IOLoop::TLS.
buildservice-autocommit accepted request 864819 from Dirk Stoecker's avatar Dirk Stoecker (dstoecker) (revision 373)
baserev update by copy to link target
Dirk Stoecker's avatar Dirk Stoecker (dstoecker) accepted request 864264 from Tina Müller's avatar Tina Müller (tinita) (revision 372)
- updated to 8.71
   see /usr/share/doc/packages/perl-Mojolicious/Changes
  8.71  2021-01-17
    - Added EXPERIMENTAL freeze option to reset method in Mojo::IOLoop.
    - Improved Mojo::IOLoop::Subprocess not to close connections after fork.
buildservice-autocommit accepted request 860115 from Sebastian Riedel's avatar Sebastian Riedel (kraih) (revision 371)
baserev update by copy to link target
Sebastian Riedel's avatar Sebastian Riedel (kraih) accepted request 859600 from Tina Müller's avatar Tina Müller (tinita) (revision 370)
- updated to 8.70
   see /usr/share/doc/packages/perl-Mojolicious/Changes
  8.70  2020-12-29
    - Fixed top-level help command in Mojolicious::Commands. (schelcj)
  8.69  2020-12-28
    - Improved design of built-in templates.
  8.68  2020-12-27
    - Updated built-in templates with new responsive design from mojolicious.org.
    - Fixed a bug in Mojo::Message::Request that resulted in duplicate request ids for Mojo::Server::Prefork workers.
buildservice-autocommit accepted request 854826 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 369)
baserev update by copy to link target
Stephan Kulow's avatar Stephan Kulow (coolo) accepted request 854509 from Tina Müller's avatar Tina Müller (tinita) (revision 368)
- updated to 8.67
   see /usr/share/doc/packages/perl-Mojolicious/Changes
  8.67  2020-12-04
    - Deprecated Mojolicious::Routes::Route::route in favor of Mojolicious::Routes::Route::any.
    - Deprecated Mojolicious::Routes::Route::over in favor of Mojolicious::Routes::Route::requires.
    - Deprecated Mojolicious::Routes::Route::via in favor of Mojolicious::Routes::Route::methods.
    - Deprecated Mojolicious::Routes::Route::detour.
    - Added methods and requires methods to Mojolicious::Routes::Route.
    - Improved Mojolicious::Commands to throw an exception for invalid commands.
Displaying revisions 41 - 60 of 427
openSUSE Build Service is sponsored by