Skip to content

Latest commit

 

History

History
92 lines (69 loc) · 4.24 KB

CHANGELOG.md

File metadata and controls

92 lines (69 loc) · 4.24 KB

Change Log

Find all notable changes of this project in this file.

v1.2

  • update library to be compatible with ra-core 4.1.5

v1.1.8 - 2022-01-07

  • required re-release as I missed to transpile all and upload the features of 1.1.7 to npm.

v1.1.7 - 2022-01-07

Fixes

New feature

v1.1.6 - 2021-01-16

Fixes

v1.1.5 - 2021-01-16

Fixes

  • fixed query string generation of rpc endpoints issue #22

Breaking changes

  • Support was dropped for generating the query string given many ids in case of an rpc endpoint. If your application has some psql functions which parse the standard input, I recommend to rework your db design. If this change causes strong damage to your application, please contact me in order to find a proper generic solution. Query strings of single rpc calls now drop the operator (eq.) and are generated properly.

v1.1.4 - 2021-01-16

  • deployment error

v1.1.3 - 2020-11-30

Fixes

  • #20, fixed small bug in update - @mkkane
  • removed console log

v1.1.2 - 2020-10-05

Fixes

  • fixed the last fix of getMany and getManyReferecnce for compound keys :)

v1.1.1 - 2020-09-28

Fixes

  • fixed getMany and getManyReferecnce for compound keys

v1.1.0 - 2020-09-16

Fixes

  • removed requirement to define order key in react admin, when using compound keys: default was id, now it's the compound key

Breaking changes

  • refactored compound primary keys: For single custom keys wrap an array as follows:
    const dataProvider = postgrestRestProvider(API_URL, fetchUtils.fetchJson, 'eq', new Map([
      ['some_table',    ['custom_id']], // <- instead of ['some_table','custom_id']
      ['another_table', ['first_column', 'second_column']],
    ]));

v1.0.7 - 2020-08-23

New feature

Maintenance

  • import React from 'react'; -> import * as React from 'react';
  • Some minor code cleanup

v1.0.6 - 2020-06-15

Fixes

v1.0.5 - 2020-06-15

Fixes

v1.0.4 - 2020-06-08

Fixes

  • Fixed missing js files in npm package #8
  • #9, Fixed typo in readme - @seclace

v1.0.3 - 2020-05-17

Fixes

v1.0.2 - 2020-03-10

Fixes

  • #4, Fixed bug while using ReferenceField with UUID - @xero88

v1.0.1 - 2020-02-01

  • initial release