Skip to content

v1.0

Compare
Choose a tag to compare
@giauphan giauphan released this 14 Mar 02:41
· 9 commits to main since this release

CrawlBlog v1.0 Update

Overview

This update brings several improvements and changes to CrawlBlog. Below is a summary of the key changes:

  • Package Update: The Goutte package has been updated to version 1.0.
  • Namespace Change: The namespace for GoutteFacade has been updated from Giauphan to Weidner.

Full Changelog

For a detailed list of changes, please refer to the Full Changelog.

Update Instructions

To update your code, make the following changes:

use Weidner\Goutte\GoutteFacade;

$crawler = GoutteFacade::request('GET', $pageUrl);

Change it to:

use Giauphan\Goutte\GoutteFacade;

$crawler = GoutteFacade::request('GET', $pageUrl);

Make sure to implement these changes to ensure compatibility with CrawlBlog v1.0.

Feel free to adjust any part of it to better fit your needs!

Full Changelog: v0.5.4...v1.0