Skip to content

Releases: olssonm/laravel-backup-shield

v3.5

16 Feb 09:56
0f61931
Compare
Choose a tag to compare

Support for spatie/laravel-backup v7 added.

v3.4

06 Dec 09:46
824f330
Compare
Choose a tag to compare
  • Support for PHP 8
  • Dropped support for Laravel 5.x
  • Dropped support for PHP 7.2

Since PHP 7.2 is now EOL, the nelexa/zip-library is no longer needed to support older versions of PHP. All encryption and compression is now handled natively in PHP.

v3.4 should be fully backwards compatible (as long as you use PHP ^7.3|8.0 that is). Planned v4.0 may break things however.

v3.3

10 Sep 09:14
8e71542
Compare
Choose a tag to compare
  • Support added for Laravel 8.
  • Dropped support for PHP 7.1 and Laravel 5.8.

v3.2

10 Mar 07:49
8b388fa
Compare
Choose a tag to compare

Support added for Laravel 7, updated the nelexa/zip-package.

v3.1

13 Nov 13:43
7e15124
Compare
Choose a tag to compare

Now supports native PHP ZipArchive-methods if using PHP >= 7.2 and PHP Zip-extension >= 1.14.0. Else the package will fallback to the previous nelexa/zip-package methods.

This should prove to be more memory efficient.

Also some other minor edits and improvements.

Note: If upgrading and the above conditions are met, AES 128-encryption will be used instead of PKWARE/ZipCrypto as this is not Supported by PHP's ZipArchive if you're using the default encryption methods.

v3.0

13 Sep 06:26
e3b615c
Compare
Choose a tag to compare

Laravel 6.0 compatibility.

v2.5

09 Apr 07:41
42ad7e8
Compare
Choose a tag to compare

Fix for Laravel 5.8.

Due to changes in testing framworks; PHPUnit, Orchestra Testbench and more – this release only supports Laravel 5.8.

For earlier versions of Laravel, use v2.4.

v2.4

20 Jan 10:48
08b8a73
Compare
Choose a tag to compare

Bumped version to work with spatie/laravel-backup ^6.0.

v2.3

22 Sep 13:29
62057e7
Compare
Choose a tag to compare

Update for more effecient composer-loading for Laravel 5.6. Compatability-check for Laravel 5.7.

v2.2

05 Jun 07:31
b3b7df3
Compare
Choose a tag to compare
  • The package now creates a new zip containing the spatie/laravel-backup-zip. This is to prevent the underlying content to be visible before unzipping.
  • Minor optimisations for the encryption-methods in an effort to not require as much RAM on bigger files. This is very difficult to get around though as encryption in itself is memory-intensive.