Skip to content

Releases: movableink/data-source.js

v4.1.0-rc

02 Aug 14:15
Compare
Choose a tag to compare
v4.1.0-rc Pre-release
Pre-release

allows to pass sha512 algorithm for HMAC token

v3.2.1-rc

01 Dec 17:10
Compare
Choose a tag to compare
v3.2.1-rc Pre-release
Pre-release

Runs yarn upgrade --recursive to bump all sub-dependencies. Mainly fixes a CVE issue for socket.io-parser.

Add RSA Signature support

11 Oct 14:58
8c95e48
Compare
Choose a tag to compare

This reflects a change we made to the backend to support RSA signatures on data sources. Similar to HMAC Signatures, see: https://github.com/movableink/data-source.js/blob/master/docs/token-builder.md for steps on how to use RsaToken to configure an RSA signature as part of your Data Source.

Creates RequestBuilder and "Token" type utility classes

04 Oct 15:46
5eacf71
Compare
Choose a tag to compare

Refactor existing methods and set it up for packagecloud

02 Oct 15:17
529918a
Compare
Choose a tag to compare
  • Remove getAllRows() method
  • Refactor existing methods
  • Make this package avalable on packagecloud
  • Replace built-in ts compiler with ts compiler in babel

v0.3.0

17 Sep 14:31
78d2b1a
Compare
Choose a tag to compare

Adds getMultipleTargets to allow for multiple target search for CSV DataSources

v0.2.2

15 Jan 22:37
38ec422
Compare
Choose a tag to compare

Fixes a Typescript compilation issue

v0.2.1

15 Oct 22:11
79265dd
Compare
Choose a tag to compare

Adds options and headers support for getAllRows and getRawData. An example:

Pass headers to set cacheTime of an API DS request:

// getAllRows
await source.getAllRows(
      targetingKeys,
      { cacheTime: 1000000 }
    );

v0.2.0

21 Jun 18:29
Compare
Choose a tag to compare

Features:

Adds headers support to getAllRows. See README for more information.

v0.1.0

04 Jun 19:39
c1a36f2
Compare
Choose a tag to compare
Merge pull request #14 from movableink/mt/update_readme

update readme with information about fetching multiple csv rows