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.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.2
October 17th, 2018
- Fix Add missing
index_collections
field to settings - Fix Refactor internal data management
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.3.1
September 5th, 2018
- New Ensure related content includes properties such as
slug
,url
,order
, etc.