Path to this page:
Subject: CVS commit: pkgsrc/www/ruby-actionpack80
From: Takahiro Kambe
Date: 2025-03-16 16:29:52
Message id: 20250316152952.D751DFBE1@cvs.NetBSD.org
Log Message:
www/ruby-actionpack80: update to 8.0.2
8.0.2 (2025/03/12)
* Improve with_routing test helper to not rebuild the middleware stack.
Otherwise some middleware configuration could be lost.
Édouard Chin
* Add resource name to the ArgumentError that's raised when invalid :only or
:except options are given to #resource or #resources
This makes it easier to locate the source of the problem, especially for
routes drawn by gems.
Before:
:only and :except must include only [:index, :create, :new, :show, :update, \
:destroy, :edit], but also included [:foo, :bar]
After:
Route `resources :products` - :only and :except must include only [:index, \
:create, :new, :show, :update, :destroy, :edit], but also included [:foo, :bar]
Jeremy Green
* Fix url_for to handle :path_params gracefully when it's not a Hash.
Prevents various security scanners from causing exceptions.
Martin Emde
* Fix ActionDispatch::Executor to unwrap exceptions like other error
reporting middlewares.
Jean Boussier
Files: