Skip to content

Releases: garethredfern/laravel-vue

v1.6.1

15 Feb 22:24
0da20a7

Choose a tag to compare

  • Refactor the Auth service to remove unnecessary async/await and return axios Promise.
  • Refactor the File service to remove unnecessary async/await and return axios Promise.

Useful link on the difference between returning await on MDN.

v1.6

14 Feb 10:29
2a11a36

Choose a tag to compare

  • 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 and isNotGuest some browsers don't like booleans in local storage.
  • Fixed a redirect issue if the guest middleware failed.

v1.5

31 Jan 09:14

Choose a tag to compare

  • 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

26 Jan 08:01

Choose a tag to compare

  • Remove unused prop types for Flash Message.
  • Add check for error type being string, errorKeys.
  • Adjust mobile styles.

v1.4

25 Jan 23:05

Choose a tag to compare

  • Add basic messaging functionality. A user can post a message to the dashboard.
  • Improve error handling.
  • Adjust pagination styles.

v1.3.8

24 Jan 22:21

Choose a tag to compare

Improve error message handling.

  • Flash message component updated
  • getError method refactored

v1.3.7

23 Jan 22:56

Choose a tag to compare

  • Refactor BasePagination to allow path prop to be optional.
  • Remove unused user and message vuex state.

v1.3.6

19 Jan 08:19

Choose a tag to compare

Refactor users view. Move getUsers function into beforeRouteUpdate hook.

v1.3.5

19 Jan 07:59

Choose a tag to compare

  • Move pagination page count inside BasePagination component.
  • Add some more styles and icons to improve app ux.

v1.3.4

18 Jan 20:47

Choose a tag to compare

Refactor the user vuex store, create a setPaginatedUsers function to remove duplicate functionality.