File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change
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
+
1
10
#### 1.1.0 Milestone Release
2
11
3
12
- New syntax to create regular expressions
Original file line number Diff line number Diff line change @@ -492,7 +492,6 @@ var jsonata = (function() {
492
492
suppliedSig += getSymbol ( arg ) ;
493
493
} ) ;
494
494
var isValid = regex . exec ( suppliedSig ) ;
495
- // console.log(isValid, params);
496
495
if ( isValid ) {
497
496
var validatedArgs = [ ] ;
498
497
var argIndex = 0 ;
@@ -2308,7 +2307,6 @@ var jsonata = (function() {
2308
2307
return args ;
2309
2308
}
2310
2309
var validatedArgs = signature . validate ( args , context ) ;
2311
- // console.log(args, validatedArgs);
2312
2310
return validatedArgs ;
2313
2311
}
2314
2312
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jsonata" ,
3
- "version" : " 1.1.0 " ,
3
+ "version" : " 1.1.1 " ,
4
4
"description" : " JSON query and transformation language" ,
5
5
"main" : " jsonata.js" ,
6
+ "homepage" : " http://jsonata.org/" ,
6
7
"repository" : {
7
8
"type" : " git" ,
8
9
"url" : " https://github.com/jsonata-js/jsonata.git"
You can’t perform that action at this time.
0 commit comments