Skip to content

v25.02

Choose a tag to compare

@fracz fracz released this 04 Feb 23:17
· 28 commits to master since this release
SUPLA-Cloud SUPLA-Core
SUPLA-Cloud v25.01
SUPLA-Cloud v25.02
SUPLA-Server v25.01

What's new in Docker?

Upgrade PHP from 8.2.26 to 8.3.15.

Breaking changes!

After this update, you need to update your mailer settings in the .env file.

Before (example):

MAILER_HOST=smtp.yourcompany.pl
MAILER_PORT=25
MAILER_USER=someemail@somecompany.pl
MAILER_PASSWORD=secretpass
MAILER_ENCRYPTION=null

After (example):

MAILER_DSN=smtp://someemail%40somecompany.pl:secretpass@smtp.yourcompany.pl:25

Username and password must be encoded for URLs. Search for "url encode online" if you don't know any tool for that.

Other examples:

# For Gmail as a transport, use: "gmail://username:password@localhost"
# For a generic SMTP server, use: "smtp://localhost:25?encryption=&auth_mode="
# With username and password, use: "smtp://username:password@localhost:25?encryption=&auth_mode="

More information and examples in Symfony Mailer docs.