Skip to content

Releases: TypeRocket/typerocket

v5.1.1

02 Aug 01:57

Choose a tag to compare

  • Remove x-frame-options from cookies config.

v5.1.0

27 Jul 19:07

Choose a tag to compare

  • Add site health info.
  • Improve model doc blocks and add PHP 8.0 ArrayShapes.
  • Improve internal comments.
  • Remove previous PHP version checks.
  • Increased PHP required version to 7.4.
  • Increase WordPress required version to 6.0.

v5.0.21

26 Jul 19:34

Choose a tag to compare

  • Add cookies.php config.

v5.0.20

20 Jul 00:11

Choose a tag to compare

  • Add action scheduler.

v5.0.19

11 May 19:53

Choose a tag to compare

  • Update Laravel mix to version 6.

v5.0.18

01 Oct 19:40

Choose a tag to compare

  • Add better term model support.

New base model classes added:

<?php
namespace App\Models;

use TypeRocket\Models\WPTerm;

class Category extends WPTerm
{
    public const TAXONOMY = 'category';

    public function posts()
    {
        return $this->belongsToPost(Post::class);
    }
}

and,

<?php
namespace App\Models;

use TypeRocket\Models\WPTerm;

class Tag extends WPTerm
{
    public const TAXONOMY = 'post_tag';

    public function posts()
    {
        return $this->belongsToPost(Post::class);
    }
}

v5.0.17

17 Sep 19:39
23e2a1c

Choose a tag to compare

  • Add tr_show_page_builder() helper.

v5.0.16

03 Sep 13:39
ad4c8c0

Choose a tag to compare

  • Fix typo.

v5.0.15

30 Apr 13:19

Choose a tag to compare

  • Clean up comments.

v5.0.14

30 Apr 13:11

Choose a tag to compare

  • Add config galaxy.wordpress_load.