From 89d0a96f260ee57fa5d8aa8e38ed73a03c90c84c Mon Sep 17 00:00:00 2001 From: Brad Bell Date: Tue, 26 Nov 2024 16:52:32 -0800 Subject: [PATCH] Changelog and docs for https://github.com/craftcms/feed-me/pull/1549 --- CHANGELOG.md | 4 ++++ docs/get-started/configuration.md | 1 + 2 files changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 116a6817..4de0c081 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Release Notes for Feed Me +## Unreleased + +- Added the `assetDownloadGuzzle` config setting which defaults to `false`. When it is set to `true`, Feed Me will use Guzzle to download assets instead curl directly. ([#1549](https://github.com/craftcms/feed-me/pull/1549)) + ## 5.8.2 - 2024-10-15 - When duplicating a feed, a new passkey is generated instead of using the passkey on the original feed. ([#1534](https://github.com/craftcms/feed-me/pull/1534)) diff --git a/docs/get-started/configuration.md b/docs/get-started/configuration.md index 12a16b53..6b6e8792 100644 --- a/docs/get-started/configuration.md +++ b/docs/get-started/configuration.md @@ -53,6 +53,7 @@ return [ - `queueTtr` — Set the 'time to reserve' time in seconds, to prevent the job being cancelled after 300 seconds (default). - `queueMaxRetry` — Set the maximum amount of retries the queue job should have before failing. - `assetDownloadCurl` — Use curl to download assets from a remote source. Can be used when issues arise using the default implementation. +- `assetDownloadGuzzle` — Use Guzzle to download assets from a remote source. Can be used when issues arise using the default implementation. - `feedOptions` — Provide an array of any of the above options (or [feed settings](../feature-tour/feed-overview.md)) to set or override for specific feeds, keyed by their existing feed IDs. _Note that feed IDs may be different across environments!_ #### Example `requestOptions`