Skip to content

Releases: stalniy/ucast

@ucast/[email protected]

08 Aug 14:42
Compare
Choose a tag to compare

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'

@ucast/[email protected]

08 Aug 14:39
Compare
Choose a tag to compare

2.0.0 (2020-08-08)

Bug Fixes

  • docs: removes $ sign from README examples (0dc924a)

Code Refactoring

  • parser: removes $ from operator name in resulting AST (e589a9c)

BREAKING CHANGES

  • parser: MongoQueryParser.parse returns AST with operator names that doesn't have $ prefix. This was done to make it easier import/re-export parser instructions and operator interpreters from single package

@ucast/[email protected]

08 Aug 09:33
Compare
Choose a tag to compare

1.1.0 (2020-08-08)

Features

  • mongo: adds built-in $all instruction for MongoQueryParser (6d3f224)

Performance Improvements

  • build: adds es6cjs format which works few times faster then umd in node env (4adba3b)

@ucast/[email protected]

08 Aug 15:20
Compare
Choose a tag to compare

1.0.0 (2020-08-08)

Features

  • translator: creates mongo to js package (383143b)

@ucast/[email protected]

08 Aug 14:35
Compare
Choose a tag to compare

2.0.1 (2020-08-08)

Bug Fixes

  • docs: removes $ sign from README (1a7e96b)

@ucast/[email protected]

08 Aug 14:31
Compare
Choose a tag to compare

2.0.0 (2020-08-08)

Code Refactoring

  • interpreters: removes $ prefix from names of operator interpreters (04ea7ac)

Performance Improvements

  • build: adds es6cjs format which works few times faster then umd in node env (4adba3b)

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/js'

After:

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

@ucast/[email protected]

08 Aug 14:30
Compare
Choose a tag to compare

1.2.0 (2020-08-08)

Features

  • condition: adds generic type to Condition interface (a3f2961)

@ucast/[email protected]

08 Aug 10:32
Compare
Choose a tag to compare

1.1.0 (2020-08-08)

Features

  • translator: adds ast property to translate function (814e874)

Performance Improvements

  • build: adds es6cjs format which works few times faster then umd in node env (4adba3b)

@ucast/[email protected]

23 Jul 04:08
Compare
Choose a tag to compare

1.0.2 (2020-07-23)

Bug Fixes

  • license: changes mistakenly set MIT license to the correct one - Apache 2.0 (197363c)

@ucast/[email protected]

23 Jul 04:04
Compare
Choose a tag to compare

1.0.2 (2020-07-23)

Bug Fixes

  • license: changes mistakenly set MIT license to the correct one - Apache 2.0 (197363c)