Skip to content

0.3.2

Latest
Compare
Choose a tag to compare
@imathews imathews released this 11 Apr 00:21
· 5 commits to main since this release

New features

  • Support custom API proxy #6
    • Your proxy server will still need to send the correct authorization credentials to Redivis
    • To use your own API proxy and bypass the standard authorization flow, configure as follows:
redivis.setApiProxy({
    // Whatever the base forwarding URL is on the proxy
    baseUrl: 'https://your-server.com/redivis_proxy', 
    // Can provide any header here, will be passed to the proxy directly
    headers: {
        authorization: 'my-auth-string',
    },
});

Fixes

  • Results from listRows() should now be properly typed.

Internal changes

  • Changed listRows() methods to use Arrow, rather than Avro, encoding
  • Build system updates and improvements