Skip to content

Releases: xiaohutai/jsonapi

JSON API v3.4.1

26 Oct 12:34
7e29f15
Compare
Choose a tag to compare

Same as 3.4.0 but with the fix for date fields in repeaters/blocks.

JSON API v3.4.0

17 Sep 12:57
1adcfad
Compare
Choose a tag to compare

NOTE FOR v3.4.0 !

If you used repeaters with images. Then you'd could (incorrectly) access images via image instead of the fieldname. It kind of works before if you had one and only one image field in a repeater/block.

JSON API v3.3.0

02 Aug 10:15
ffba4a2
Compare
Choose a tag to compare
  • Fix #83 - fields can be filtered again via GET params ?fields[entries]=slug,teaqser
  • Fix #84 via #85 - Enable enabledisplaynames feature
  • Fix #52 via #87 - Set correct header for menu and taxonomy responses.
    • Note: A rewrite of menu and taxonomy for JSON API would be for 4.x

JSON API v3.2.0

23 Apr 08:02
Compare
Choose a tag to compare

NOTE FOR v3.2.0 !

This version has a backward compatiblity issue if your code expects a 400 Bad Request error in empty listings. This is not according the JSONAPI specification:

200 OK
A server MUST respond to a successful request to fetch an individual resource or resource collection with a 200 OK response.

A server MUST respond to a successful request to fetch a resource collection with an array of resource objects or an empty array ([]) as the response document’s primary data.
Source http://jsonapi.org/format/#fetching-resources-responses

In v3.2.0, this extension now returns a 200 OK and an empty array instead.

JSON API v3.1.0

20 Apr 15:15
d99e355
Compare
Choose a tag to compare

Feature: You can now disable the whole frontend - See #78

Set disablefrontend to true in order to disable it.

disablefrontend: true

JSON API v3.0.18

20 Apr 14:02
571d9b4
Compare
Choose a tag to compare

Thanks to @Raistlfiren

  • Fix search - See #82 fixes #69
  • Fix blocks - See #81 fixes #79

JSON API v3.0.17

23 Feb 09:44
b5a60a8
Compare
Choose a tag to compare
  • Fix count warning in PHP7.2 (#76)
  • Add _block to block-type fields (#74)

JSON API v3.0.16

06 Sep 09:00
Compare
Choose a tag to compare

This release includes some small fixes for relationships:

  • [d87382f] Fix multiple relationships in listings. It used to show only one max per item.
  • [bf6e0f8] Fix included data in response. It used to add a key and it got outputted as an object/hashmap, now it's a always an array.

JSON API v3.0.15

12 Jul 14:37
Compare
Choose a tag to compare
  • Fix compatibility issues with Bolt 3.3. see #59

JSON API v3.0.14

12 Jul 14:28
Compare
Choose a tag to compare
  • Fix controllers, see #57