Upgrading to v4 from 3.x
This upgrade guide only discusses upgrading Socialstream 4.x and assumes you are upgrading from an unaltered 3.x install. Upgrading Jetstream, Livewire, Inertia, Vue or Tailwind CSS is out of scope for this documentation. Please consult the upgrade guides for each of these packages instead.
Overview
Changes
Native Type declarations
Impact: High
Version 4.x updates the interfaces and published php
files to use native type declarations. Please ensure the following files have been updated to match their interface counterparts:
User Profile Photo
Impact: High
If you have included the HasProfilePhoto
trait in your user model, please update your model to the following:
And replace the getProfilePhotoUrlAttribute
method in the model with:
Inertia Props
Impact: High
If you're using Inertia, please update your Profile/Show.vue
file to the following:
Last updated