Skip to content

Releases: netceteragroup/skele

v1.0.0-alpha.20

08 Nov 11:31
Compare
Choose a tag to compare
v1.0.0-alpha.20 Pre-release
Pre-release

Bug Fixes

  • core: failed http calls explicity sets 998 as status (0f857de)
  • core: read/readRefresh explicitly set 999 as status code for programming errors (af3e128)

Features

  • core: failed effects dispatch an action (eabacce)
  • core: reads now receive a context as a third parameter (b51dc55)

v1.0.0-alpha.19

01 Nov 12:35
Compare
Choose a tag to compare
v1.0.0-alpha.19 Pre-release
Pre-release

Bug Fixes

  • components: Always remeasure layout on content size change (#74) (3a0f86f)

v1.0.0-alpha.18

30 Oct 15:28
Compare
Choose a tag to compare
v1.0.0-alpha.18 Pre-release
Pre-release

Bug Fixes

  • core: Add warning (in development) when UI lookup fails (31a0529)
  • core: Fix setting of headers on POST requests (#71) (851e080)
  • core: Lower error log level when readRefresh fails (#69) (76a71d4)
  • core: replace code 420 with 999 for programming errors (exceptions) (#73) (b69e26d)

Features

  • core: add failedRefresh metadata (#72) (6d82727)

BREAKING CHANGES

  • core: In case you've used 420 status code when programming errors happen, now you will need to update your code to use 999. Status code 420 means networking error only.

v1.0.0-alpha.17

19 Oct 21:23
Compare
Choose a tag to compare
v1.0.0-alpha.17 Pre-release
Pre-release

Bug Fixes

  • core: enrichers handle single-childs (178dea0), closes #67
  • core: pathsToChildElements for single element child position (aae019d), closes #67
  • core: pathsToChildElements will not return paths to non-existing children (fb300f8), closes #67
  • core: reads always place a valid metadata (c922e3e), closes #68

v1.0.0-alpha.16

19 Oct 07:40
Compare
Choose a tag to compare
v1.0.0-alpha.16 Pre-release
Pre-release

Features

  • core: ability ot focusOn sub-elements (10e5f48)

v1.0.0-alpha.15

17 Oct 11:23
Compare
Choose a tag to compare
v1.0.0-alpha.15 Pre-release
Pre-release

Bug Fixes

  • core: opton passing in http.post (762a423)
  • core: read wound't wait for enrichers to finish (448c896)

v1.0.0-alpha.14

17 Oct 09:46
Compare
Choose a tag to compare
v1.0.0-alpha.14 Pre-release
Pre-release

Bug Fixes

  • core: Small bug fixes in new http methods and read fail action (d13f6b7)

v1.0.0-alpha.13

13 Oct 07:51
Compare
Choose a tag to compare
v1.0.0-alpha.13 Pre-release
Pre-release

Bug Fixes

  • core: return values from read fns are checked (395e608)

Features

  • core: Clarified http response API (cfe68e5)

v1.0.0-alpha.12

12 Oct 13:11
Compare
Choose a tag to compare
v1.0.0-alpha.12 Pre-release
Pre-release

Features

  • core Refresh effect, explicit read actions, better HTTP methods (#66) (cf9ee05)

BREAKING CHANGES

  • read action types have changed. Now are namespaced and can be found in actions.types.read. If you had any middleware listening on these actions, you might want to check it.
  • To better support API growth, he signature of readers has changed from (string, boolean) => Promise<ReadResponse> to (string, object) => Promise<ReadResponse>
    • previously a boolean flag indicating whether the read should issue a revalidating http request was passed as a second argument; now this flag can be found inside the second arg like so:
 function httpRead(uri, opts) {
   const { revalidate } = opts
  //...
}

v1.0.0-alpha.11

05 Oct 12:34
Compare
Choose a tag to compare
v1.0.0-alpha.11 Pre-release
Pre-release

Features

  • core: data.pathsToChildElements() returns a List of paths to all child elements of an element (97964bc)
  • core: Enrichers (#63) (b12222b)