Skip to content
Compare
Choose a tag to compare
@stalniy stalniy released this 08 Aug 14:42
· 120 commits to master since this release

2.0.0 (2020-08-08)

Bug Fixes

  • docs: removes $ sign from README examples (44a8383)

Code Refactoring

  • interpreters: removes $ prefix from names of operator interpreters (377d89f)

BREAKING CHANGES

  • interpreters: removes $ prefix from names of operator interpreters. Also renames $in to within because in is a reserved word in JS. This ensures we can safely import/re-export symbols from this package and other parsers/interpreters inside/from single file:

Before:

import { $in, $and } from '@ucast/objection'

After:

import { within, and } from '@ucast/objection'