Skip to content

Releases: sevenwestmedia/react-ssr-data-loader

v2.0.0-next.4

v2.0.0-next.4 Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 10 Nov 02:34
83ad298

Patch Changes

  • 6b228ea: Fixed possible error when a data loader is unmounted while a new data loader is still mounting which has the same data loader params

v2.0.0-next.3

v2.0.0-next.3 Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 28 Oct 03:35
fbd08d0

Patch Changes

react-ssr-data-loader@2.0.0-next.0

Pre-release

Choose a tag to compare

Major Changes

  • 576e31d: Converted usage from component with render prop to react hook

    Migration

    Before

    const TestDataLoader = this.resources.registerResource<DataResource, { id: string }>(
        'testDataType',
        () => loadData(),
    )

    After

    const useDataLoader = this.resources.registerResource<Data, { id: string }>('testDataType', () =>
        loadData(),
    )

v1.3.0

Choose a tag to compare

@JakeGinnivan JakeGinnivan released this 03 Sep 08:03
33e2293

1.3.0 (2019-09-03)

Bug Fixes

  • Switch to const enum for LoaderStatus (8b764da)

Features

  • Expose public API for generating the cache key (fc00e88)

v1.2.0

Choose a tag to compare

@JakeGinnivan JakeGinnivan released this 03 Sep 04:55
8c68b2e

1.2.0 (2019-09-03)

Features

  • Expose paramsCacheKey to consumers (5e653a6)

v1.1.1

Choose a tag to compare

@JakeGinnivan JakeGinnivan released this 03 Sep 02:44
5234f16

1.1.1 (2019-09-03)

Bug Fixes

  • resourceType is not exposed in types but is passed at runtime (f8f8267)

v1.1.0

Choose a tag to compare

@JakeGinnivan JakeGinnivan released this 23 Aug 04:05
2504df4

1.1.0 (2019-08-23)

Features

  • Added esm build and marked library as having no side effects (f7c4975)

v1.0.2

Choose a tag to compare

@JakeGinnivan JakeGinnivan released this 23 Aug 03:42
da92c8e

1.0.2 (2019-08-23)

Bug Fixes

  • The implementation of isPromise doesn't work properly with core-js (f19021d)

v1.0.1

Choose a tag to compare

@JakeGinnivan JakeGinnivan released this 28 May 02:29
ad74b93

1.0.1 (2019-05-28)

Bug Fixes

  • Replaced object-hash with hash-sum to hopefully get a more deterministic hash (c83b4e0)

v1.0.0

Choose a tag to compare

@JakeGinnivan JakeGinnivan released this 25 May 06:45

Initial release