You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
s3: update s3 config, AWS S3 client config (access key, secret key etc) are now should be passed into clientConfig
Example:
constconfig: ApiConfig={// ... other configurationss3: {clientConfig: {credentials: {accessKeyId: "ASSESS_KEY",// Replace with your AWS access keysecretAccessKey: "SECRET_KEY",// Replace with your AWS secret key},region: "REGION",// Replace with your AWS regionendpoint: "ENDPOINT",forcePathStyle: false,},}
s3: UplaodedById is now optional in files model
Required Migration
If you're upgrading to this version, run the following SQL migration:
ALTERTABLE files
ALTER COLUMN "uploaded_by_id" DROP NOT NULL;