Skip to content

Releases: FedericoHeichou/PizzaReader

v1.5.0

05 Oct 14:06
a27d939
Compare
Choose a tag to compare

What's Changed

TL;DR changelog:

  • Upgrade from Laravel 9 to 11
  • Dropped PHP 8.1 and 8.0
  • Seems laravel dropped APC cache
  • Added some customizations in .env
  • The default session driver is now "database"; it obviously requires running db migrations. If you are upgrading you have probably "SESSION_DRIVER" set to "file" in your .env. You have to change it manually to "database"
  • Cache driver is kept to "file" as default. You may change it to "database", but usually providers do a huge user compression in databases, so it may slow down your whole website. Usually local file system (with SSD) is better, but you may need to test
  • The default mailer is local sendmail
  • Added some tables to handle cache and sessions in the database. Please remember to run php artisan migrate to update the schema if you want to try them
  • Some colors changed to have a better contrast
  • Box on bigger screens (>1440) are now larger
  • Bump pizzareader ui to 1.1.0
  • Graphical fixes

Important notes

It now requires PHP >=8.2. It has been tested but may have bugs. If you find any, please report them immediately!
If you are upgrading, remember to follow the normal update procedure:

php artisan down --render='maintenance' --secret='YourCustomSecret' || php artisan down
# You can bypass maintenance mode by visiting your site with the secret URI you choose, for example https://pizzareader.local/YourCustomSecret
git pull origin master
php composer.phar install --no-dev
php artisan cache:clear
php artisan config:cache
php artisan migrate
php artisan up

Full Changelog: v1.4.0...v1.5.0

v1.4.0

17 Feb 21:03
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.2...v1.4.0

v1.3.2

22 Jul 13:20
7d891e0
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.1...v1.3.2

v1.3.1

11 Jul 20:14
c1f9684
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.3.0...v1.3.1

v1.3.0

08 Jul 13:38
e1e8870
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.2.0...v1.3.0

v1.2.0

27 May 13:37
fd59fcc
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.0...v1.2.0

v1.1.0

13 May 13:58
ee92c43
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.2...v1.1.0

v1.0.2

03 Jul 13:43
Compare
Choose a tag to compare

What's Changed

  • Bump guzzlehttp/guzzle from 7.4.2 to 7.4.3 by @dependabot in #17
  • Bump guzzlehttp/guzzle from 7.4.3 to 7.4.5 by @dependabot in #19
  • Fix Chrome 102 with long-strip + height
  • Hiding licensed chapters with GET /comics/{comic-slug} API without query parameter licensed=true
  • Update npm deps
  • Custom trusted proxies by @FedericoHeichou in #21
  • Persistent ratings values by @FedericoHeichou in #23
  • Adding cron and custom maintenance page by @FedericoHeichou in #25

Full Changelog: v1.0.1...v1.0.2

v1.0.1

03 May 12:03
73ffa95
Compare
Choose a tag to compare

What's Changed

  • Bump async from 2.6.3 to 2.6.4 by @dependabot in #16
  • Fix php8 compatibility while uploading a thumbnail in a new comic

Full Changelog: v1.0.0...v1.0.1

v1.0.0

03 Apr 14:06
40e2bb6
Compare
Choose a tag to compare

First stable release

Full Changelog: v0.1.0...v1.0.0