Skip to content

v7.0.0

Compare
Choose a tag to compare
@gajus gajus released this 23 Oct 12:35

7.0.0 (2018-10-23)

Bug Fixes

Features

  • expose instance specific error constructors (c00b21f)
  • remove ability to customise errors (9c5b8b3)

BREAKING CHANGES

  • Removing ability to configure NotFoundError.

Instead use a helper function to check if error is of certain type, e.g.

// @flow

import {
  NotFoundError as SlonikNotFoundError
} from 'slonik';
import {
  NotFoundError as LocalNotFoundError
} from '../types';

export default (error: Error) => {
  return error instanceof SlonikNotFoundError || error instanceof LocalNotFoundError;
};