Releases: garethredfern/laravel-vue
Releases · garethredfern/laravel-vue
v1.6.1
v1.6
- Refactored authentication, adding better checking for API errors.
- Login now checks for an authorized user before moving to the dashboard.
- Changed the local storage guest variables to
isGuest
andisNotGuest
some browsers don't like booleans in local storage. - Fixed a redirect issue if the guest middleware failed.
v1.5
- Add the ability to have multiple middleware guards on a route.
- Move the auth beforeEnter method to auth middleware.
- Add a guest route which stops the login page being accessed if a user is logged in.
- Move the isAdmin check for the users route to admin middleware.
- Add a check for authUser on authUser component.
v1.4.1
- Remove unused prop types for Flash Message.
- Add check for error type being string, errorKeys.
- Adjust mobile styles.
v1.4
- Add basic messaging functionality. A user can post a message to the dashboard.
- Improve error handling.
- Adjust pagination styles.
v1.3.8
Improve error message handling.
- Flash message component updated
- getError method refactored
v1.3.7
- Refactor BasePagination to allow path prop to be optional.
- Remove unused user and message vuex state.
v1.3.6
Refactor users view. Move getUsers function into beforeRouteUpdate hook.
v1.3.5
- Move pagination page count inside BasePagination component.
- Add some more styles and icons to improve app ux.
v1.3.4
Refactor the user vuex store, create a setPaginatedUsers function to remove duplicate functionality.