Skip to content

Releases: Daanra/laravel-lets-encrypt

v0.5.3

16 Apr 17:51
Compare
Choose a tag to compare
  • Add support for Laravel 11

v0.5.2

14 Mar 19:26
0932672
Compare
Choose a tag to compare
  • Fixes a bug in the migration for MySQL databases (#28)

v0.5.1

21 Jan 16:39
b49a941
Compare
Choose a tag to compare
  • Fix bug when using both delay() and renew() on a PendingCertificate (#27)

v0.5.0

16 Sep 11:12
a077905
Compare
Choose a tag to compare

Adds support for Subject Alternative Names [#23] (thanks to @Muffinman).

Usage:

LetsEncrypt::certificate('mydomain.com')
        ->setSubjectAlternativeNames(['mydomain2.com'])
        ->create(); 

Upgrading

For this to work, publish the new migration by running:

php artisan vendor:publish --provider="Daanra\LaravelLetsEncrypt\LetsEncryptServiceProvider" --tag="lets-encrypt-0.5"

v0.4.0

28 May 08:26
46964d8
Compare
Choose a tag to compare
  • Fixes numerous dependency issues related to Guzzle
  • Drop support for Laravel 5 & 6

v0.3.0-beta

29 Oct 20:12
e8f58d5
Compare
Choose a tag to compare
v0.3.0-beta Pre-release
Pre-release

A new fluent syntax for creating certificates has been added:

LetsEncrypt::certificate('mydomain.com')
            ->chain([
                new SomeJob()
            ])
            ->delay(5)
            ->retryAfter(4)
            ->setTries(4)
            ->setRetryList([1, 5, 10])
            ->create(); // or ->renew()

This new syntax allows you to:

  • Specify the number of times the jobs should be attempted
  • Specify a delayed time interval for creating the certificate
  • Specify when the jobs should be retried

v0.2.4

17 Sep 11:31
bf6cdab
Compare
Choose a tag to compare
  • Fix method signature on facade

v0.2.3

26 Jul 17:51
Compare
Choose a tag to compare

Update model typehint

v0.2.2

25 May 13:34
b7ca490
Compare
Choose a tag to compare
  • Correct the typehint of renew()

v0.2.1

16 Feb 15:07
Compare
Choose a tag to compare
  • Reduce queries when renewing certificates