Skip to content

Releases: InfusionWeb/laravel-remote-content-cache

Add verify false setting in getContentChunk()

19 Jul 02:11
cfbc4a3
Compare
Choose a tag to compare
1.3.1

v 1.3.1 - add verify false to Guzzle

1.3.0

10 Jun 20:14
e462053
Compare
Choose a tag to compare
  • Updated to Guzzle 7 to support Laravel 8+

Add support for Laravel 6.0

10 Sep 18:16
Compare
Choose a tag to compare

Adds support for Laravel 6.0 by removing string helpers and removing unnecessary dependency on Illuminate\Console\Command

1.2.5

27 Dec 20:00
Compare
Choose a tag to compare

Allows Drupal 8 web service endpoints (contained in "results" property) to work correctly.

Example:

{
    "results": [
        {
            "source": "marketing/advertising/what-does-the-google-adwords-redesign-mean-for-my-business",
            "destination": "https://learn.infusionsoft.com/marketing/advertising/3-new-google-adwords-features-you-need-to-know-about",
            "type": "301"
        },
        {}...
    ]
}

1.2.4

13 Sep 20:47
Compare
Choose a tag to compare

Added isset() and unset() functionality to Item object.

This allows code like the following to work:

<?php

$item = ContentCache::profile('blogs')->getById(6026);

if (isset($item->metatag_title)) {
    SEO::metatags()->setTitle($item->metatag_title);
}

unset($item->metatag_title);

?>