Release v2.0.7
feat: Enhance access records with route parameters and path
- Added
route_params(JSON) androute_path(VARCHAR 2048) fields toRouteDataRecordfor improved access tracking. - Updated the Access Records UI to display a clickable Path column and include parameters in CSV/JSON exports.
- Modified related services, controllers, and message handlers to support the new fields.
- Updated documentation and changelog to reflect these changes and provide migration instructions.
Changelog
Added
- Access records: route params and path – Each
RouteDataRecordnow stores the route parameters (route_params, JSON) and the request path (route_path, VARCHAR 2048) for the specific access. The Access Records table shows a Path column with a clickable link to the exact URL that was hit (e.g./user/123). When path is not available, params are shown as JSON. CSV and JSON exports includepathandparams. Runphp bin/console nowo:performance:create-records-table --updateornowo:performance:sync-schemaafter updating.
See UPGRADING for migration steps.