Skip to content

Releases: unveiler-io/react-native-client

Release 3.0.1-beta.2

15 Aug 17:04
Compare
Choose a tag to compare
Release 3.0.1-beta.2 Pre-release
Pre-release

3.0.1-beta.2 (2021-08-15)

Bug Fixes

Release 3.0.1-beta.1

15 Aug 16:54
Compare
Choose a tag to compare
Release 3.0.1-beta.1 Pre-release
Pre-release

3.0.1-beta.1 (2021-08-15)

Features

  • adds support for the logRequestDetails flag for location verification attempts (e4bcde7)

Release 3.0.1-beta.0

15 Aug 16:46
Compare
Choose a tag to compare
Release 3.0.1-beta.0 Pre-release
Pre-release

3.0.1-beta.0 (2021-08-15)

Release 3.0.0

23 Jul 17:43
Compare
Choose a tag to compare

3.0.0 (2021-07-23)

Features

  • Rename ClaimrClient to UnveilerClient (7f39b74)
  • Rename package to @unveiler.io/react-native-client (9e92919)

BREAKING CHANGES

This npm package has been renamed from @claimr/react-native-client to @unveiler.io/react-native-client. To upgrade:

  • Uninstall @claimr/react-native-client and add @unveiler.io/react-native-client, e.g.:
# npm
npm remove --save @claimr/react-native-client
npm add --save @unveiler.io/react-native-client
# Yarn
yarn remove @claimr/react-native-client
yarn add @unveiler.io/react-native-client
  • Then update the package name in all of your imports from @claimr/react-native-client to
    @unveiler.io/react-native-client.

  • Then find the place where you instantiate ClaimrClient and instead instantiate UnveilerClient, the interface between the two has stayed the same, so merely renaming is sufficient.

Here's a migration example to illustrate what you need to do:

import { ClaimrClient } from '@claimr/react-native-client'

const client = ClaimrClient({ apiKey })

Becomes:

import { UnveilerClient } from '@unveiler.io/react-native-client'

const client = UnveilerClient({ apiKey })

Release 3.0.0-rc.0

23 Jul 16:54
Compare
Choose a tag to compare
Release 3.0.0-rc.0 Pre-release
Pre-release

3.0.0-rc.0 (2021-07-23)

Features

BREAKING CHANGES

  • To upgrade, update your imports and usage wherever you use ClaimrClient, for example:
import { ClaimrClient } from '@claimr/react-native-client'

const client = ClaimrClient({ apiKey })

Becomes:

import { UnveilerClient } from '@unveiler.io/react-native-client'

const client = UnveilerClient({ apiKey })
  • To upgrade, update all imports from @claimr/react-native-client to
    @unveiler.io/react-native-client.

Release 2.2.0-beta.0

24 Apr 21:11
Compare
Choose a tag to compare
Release 2.2.0-beta.0 Pre-release
Pre-release

2.2.0-beta.0 (2021-04-24)

Bug Fixes

  • example: correct the entrypoint of the application when building production releases (0cf0561)
  • example: correctly instantiate flipper (e5cfca5)
  • gnssloggermodule: catch any exception occuring while registering the gnss callback (9649810)

Release 2.1.0

27 Jan 07:41
Compare
Choose a tag to compare

2.1.0 (2021-01-27)

Release 2.1.0-beta.0

12 Jan 22:12
Compare
Choose a tag to compare
Release 2.1.0-beta.0 Pre-release
Pre-release

2.1.0-beta.0 (2021-01-12)

Bug Fixes

  • uselazyverifiedlocation: prevents queries from retriggering eachother (6951b14)

Features

  • adds VerifiedLocationProvider object to share gnss collection logic (b5d5d47)
  • uselazyverifiedlocation: adds minEpochs option (2e6023b)

Release 2.0.0

03 Jan 19:14
Compare
Choose a tag to compare

2.0.0 (2021-01-03)

Features

  • replaces bufferSize with maxEpochs (0bb1034)

BREAKING CHANGES

  • The bufferSize option is now removed in the useLazyVerifiedLocation hook.
    Instead, use the maxEpochs option. As a rule of thumb, divide the value you were using for
    bufferSize by approximately 8 when determining the value for maxEpochs.

Release 1.3.2

29 Dec 14:18
Compare
Choose a tag to compare

1.3.2 (2020-12-29)

Performance Improvements

  • android: combines events emitted from Android to RN (c8c89a3)