Skip to content

Commit

Permalink
1.0.0-alpha.13
Browse files Browse the repository at this point in the history
  • Loading branch information
lahmatiy committed Jan 6, 2020
1 parent 9097352 commit 26243a2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
## next
## 1.0.0-alpha.13 (January 6, 2020)

- Added support a function for `debug` option, i.e. `query('...', { debug: (name, value) => /* ... */ })`
- Disallowed whitespace between `$` and identifier, now it throws a parse error
- Allowed parent's scope variables overlapping, i.e. `$a;.($a; ...)` doesn't throw an error now
- Added `fromEntries()` method
- Added pipeline operator, i.e. `foo | bar | ...`
- Reworked build:
- Added baking `src/parser.js` before publishing, i.e. replace runtime parser compilation with a compiled version
- Moved `jison` to dev dependencies, package has no dependencies now (dev only)
- Added `fromEntries()` method
- Allowed parent's scope variables overlapping, i.e. `$a;.($a; ...)` doesn't throw with an error now
- Added support for a function as `debug` option value, i.e. `query('...', { debug: (name, value) => /* ... */ })`
- Disallowed whitespace between `$` and identifier, previously `$foo` can be used as `$ foo`, now it throws with a parse error
- Reworked build setup:
- Added baking of `src/parser.js` before publishing, i.e. replace a runtime parser compilation with a pre-compiled version
- Moved `jison` to dev dependencies, and package has no dependencies anymore (dev only)
- Removed `dist/parser.js` & `dist/version.json` from package

## 1.0.0-alpha.12 (December 18, 2019)
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jora",
"version": "1.0.0-alpha.12",
"version": "1.0.0-alpha.13",
"description": "JavaScript object query engine",
"author": "Roman Dvornov <[email protected]> (https://github.com/lahmatiy)",
"repository": "discoveryjs/jora",
Expand Down

0 comments on commit 26243a2

Please sign in to comment.