------------------
* Added new input parameters:
* ``urls`` accepts a newline-delimited list of URLs.
* ``urls_file`` accepts a URL that points to a plain-text file with a
newline-delimited list of URLs.
Only one of ``url``, ``urls`` and ``urls_file`` should be used at a time.
* Added new crawling strategies:
* ``automatic`` - uses heuristics to see if an input URL is a homepage, for
which it uses a modified ``full`` strategy where other links are discovered
only in the homepage. Otherwise, it assumes it's a navigation page and uses
the existing ``navigation`` strategy.
* ``direct_item`` - input URLs are directly extracted as products.
* Added new parameters classes: ``LocationParam`` and ``PostalAddress``. Note
that these are available for use when customizing the templates and are not
currently being utilized by any template.
* Backward incompatible changes:
* ``automatic`` becomes the new default crawling strategy instead of ``full``.
* CI test improvements.