4.10.1
November 12th, 2019
- Fix Fix issue caused by not saving config after adding Fetch to
system.csrf_exclude
(thanks @wanze)
4.9
October 19th, 2019
- New Add support for fetching Formsets (allowing ajax form posting to Statamic, see docs for example)
4.8.2
September 15th, 2019
- Fix Allow Search to find any kind of Content (not just Entries)
- Fix Update FetchTags to support new API additions
- Fix Fix various minor issues
4.8.1
September 15th, 2019
- Fix Update Taxonomy methods to follow response data structure (nesting data inside a
data
key)
4.8
September 15th, 2019
- New Add support for fetching User(s)
4.7
September 15th, 2019
- New Add support for Taxonomies (thanks @adamtsai1)
4.6
September 6th, 2019
- New Add support to fetch Asset(s) (thanks @zackphilipps)
4.5
May 3rd, 2019
- New Change Fetch and FetchAuth classes into services, allowing them to be extended or decorated more easily
4.4.0
February 3rd, 2019
- Fix Return a 404 response if a resource cannot be found (only for
json
-type requests)
4.3.1
November 16th, 2018
- Fix Revert back to a stable version as the latest release had breaking side-effects
4.1.3
November 8th, 2018
- Fix Fix issue fetching related data for single Entries
4.1.2
October 17th, 2018
- Fix Add missing
index_collections
field to settings - Fix Refactor internal data management
4.1.1
October 17th, 2018
- Fix Fix issue when using float values
4.1
October 12th, 2018
- New Add support to fetch single Entries by ID or slug
4.0.1
October 12th, 2018
- Fix Fix issue where Search results wouldn't get filtered by published state
4.0
September 10th, 2018
- New Add ability to limit & paginate data
- New Add ability to filter data by taxonomy
- New Add ability to search site & indexed data
- Fix Fix issue relating to supplementing Taxonomy data
- Break Data is returned one level deeper (see upgrade notes below)
Upgrade Notes:
In v4.0, data is returned inside a data
key along with other useful attributes like total_results
, has_next_page
, etc. This may cause some JS to break as you'll need to go down one level deeper:
Pre-4.0
axios.get('/!/Fetch/collection/blog') .then(resp => this.entries = resp.data)
4.0+
axios.get('/!/Fetch/collection/blog') .then(resp => this.entries = resp.data.data)
3.4
September 7th, 2018
- New Add
published
&unpublished
filter options
3.3.1
September 5th, 2018
- New Ensure related content includes properties such as
slug
,url
,order
, etc.
3.3
August 28th, 2018
- New Automatically fetch collection for pages using
mount
3.2
August 28th, 2018
- New Add support for Globals
3.1
June 10th, 2018
- Fix Fix issue where data wouldn't always be fetched recursively
3.0
January 8th, 2018
- New Add support for localised data