Skip to content

Latest commit

History

History
38 lines (24 loc) 路 1.26 KB

CHANGELOG.md

File metadata and controls

38 lines (24 loc) 路 1.26 KB

Changelog

All notable changes to route-usage will be documented in this file

0.4

07 Dec 2019 | git diff 0.3..0.4

  • Support other databases - PR #5

    Instead of a raw MySQL query, the package is now using Eloquent to save the route usage entries. This brings support to other databases, so tests are now running using SQLite.

0.3

29 Oct 2019 | git diff 0.2..0.3

  • Hide HTML page behind Gate - PR #13

    In your AuthServicePrivder::boot, define a gate:

    Gate::define('viewRouteUsage', function ($user) {
        return $user->isSuperAdmin();
    });

0.2

28 Oct 2019 | git diff 0.1..0.2

  • Ignore OPTIONS http calls - PR #12

  • Ignore routes based on their name or uri - PR #6

  • Add style for HTML view - PR #8

0.1

  • initial release