Releases: netceteragroup/skele
Releases · netceteragroup/skele
v1.0.0-alpha.20
v1.0.0-alpha.19
v1.0.0-alpha.18
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
BREAKING CHANGES
- core: In case you've used
420
status code when programming errors happen, now you will need to update your code to use999
. Status code420
means networking error only.
v1.0.0-alpha.17
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
Features
- core: ability ot focusOn sub-elements (10e5f48)
v1.0.0-alpha.15
v1.0.0-alpha.14
Bug Fixes
- core: Small bug fixes in new http methods and read fail action (d13f6b7)
v1.0.0-alpha.13
v1.0.0-alpha.12
Features
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
//...
}