Skip to content

Commit 7b389bb

Browse files
push v1.1.1 to npm
1 parent b159c2e commit 7b389bb

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
#### 1.1.1 Maintenance Release
2+
3+
- fix chaining operator for falsy inputs
4+
- fix tokenizer regression for name tokens that start with "in" and "or"
5+
- Make minified version appear in npm
6+
- Enforce eqeqeq rule in JSONata (#41)
7+
- fix regression: some instances of divide token were incorrectly parsed as start of regex
8+
9+
110
#### 1.1.0 Milestone Release
211

312
- New syntax to create regular expressions

jsonata.js

-2
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,6 @@ var jsonata = (function() {
492492
suppliedSig += getSymbol(arg);
493493
});
494494
var isValid = regex.exec(suppliedSig);
495-
// console.log(isValid, params);
496495
if(isValid) {
497496
var validatedArgs = [];
498497
var argIndex = 0;
@@ -2308,7 +2307,6 @@ var jsonata = (function() {
23082307
return args;
23092308
}
23102309
var validatedArgs = signature.validate(args, context);
2311-
// console.log(args, validatedArgs);
23122310
return validatedArgs;
23132311
}
23142312

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
{
22
"name": "jsonata",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"description": "JSON query and transformation language",
55
"main": "jsonata.js",
6+
"homepage": "http://jsonata.org/",
67
"repository": {
78
"type": "git",
89
"url": "https://github.com/jsonata-js/jsonata.git"

0 commit comments

Comments
 (0)