Skip to content

Commit

Permalink
Merge branch 'release/0.5.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasrw committed Sep 16, 2019
2 parents bc96062 + abc6bf8 commit 6d748a4
Show file tree
Hide file tree
Showing 18 changed files with 66,157 additions and 342 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ test/test604.json
test/test251.xlsx
.versions
.npm/
package-lock.json
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ node_js:
# - "node"
- "11"
- "10"
- "9"
- "8"
- "7"
- "6"


script: npm run test:only && npm test
Expand Down
44 changes: 28 additions & 16 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,36 @@
# Changelog


## 0.4.11 "Lawdar" (05.10.2018)

* Add: Specified XLSX sheet without knowing the name


## 0.4.10 "Maoshk" (04.10.2018)


* Add: xlsxml files with multiple sheets




#0.5.1 "Qazvin" (16.09.2019)
- Add: Chain OUTER JOIN's #1105
- Better: Typescript typings
- Better: Updated dependencies
- Fix: Join on CSV files directly
- Fix: OUTER JOIN bug #1101
- Fix: Pivot function cast for SUM and AVG


## 0.4.11 "Lawdar" (05.10.2018)

* Add: Specified XLSX sheet without knowing the name


## 0.4.10 "Maoshk" (04.10.2018)


* Add: xlsxml files with multiple sheets


## 0.4.9 "Alsalfiah" (05.08.2018)

* Better: Error message grammar
* Better: Support for Meteor code standards
* Fix: dbprecision for select query
* Fix: Handle promise error when reading one line csv files
* Fix: AUTO_INCREMENT when using local storage

* Better: Error message grammar
* Better: Support for Meteor code standards
* Fix: dbprecision for select query
* Fix: Handle promise error when reading one line csv files
* Fix: AUTO_INCREMENT when using local storage

## 0.4.8 "Nafhan" (14.07.2018)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@
"bin",
"lib"
],
"version": "0.5.0"
"version": "0.5.1"
}
4 changes: 2 additions & 2 deletions dist/alasql-worker.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! AlaSQL v0.5.0 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.5.1 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.5.0
@version 0.5.1
AlaSQL - JavaScript SQL database
© 2014-2016 Andrey Gershun & Mathias Rangel Wulff
Expand Down
2 changes: 1 addition & 1 deletion dist/alasql-worker.min.js

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

6 changes: 3 additions & 3 deletions dist/alasql.fs.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! AlaSQL v0.5.0 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.5.1 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.5.0
@version 0.5.1

AlaSQL - JavaScript SQL database
© 2014-2016 Andrey Gershun & Mathias Rangel Wulff
Expand Down Expand Up @@ -142,7 +142,7 @@ var alasql = function(sql, params, cb, scope) {
Current version of alasql
@constant {string}
*/
alasql.version = '0.5.0';
alasql.version = '0.5.1';

/**
Debug flag
Expand Down
6 changes: 3 additions & 3 deletions dist/alasql.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! AlaSQL v0.5.0 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
//! AlaSQL v0.5.1 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
/*
@module alasql
@version 0.5.0
@version 0.5.1

AlaSQL - JavaScript SQL database
© 2014-2016 Andrey Gershun & Mathias Rangel Wulff
Expand Down Expand Up @@ -142,7 +142,7 @@ var alasql = function(sql, params, cb, scope) {
Current version of alasql
@constant {string}
*/
alasql.version = '0.5.0';
alasql.version = '0.5.1';

/**
Debug flag
Expand Down
4 changes: 2 additions & 2 deletions dist/alasql.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "alasql",
"description": "Use SQL to select and filter javascript data - including relational joins and search in nested objects (JSON). Export to and import from Excel and CSV",
"version": "0.5.0",
"version": "0.5.1",
"author": "Andrey Gershun <[email protected]>",
"contributors": [
"Mathias Rangel Wulff <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion test/coverage/coverage.json

Large diffs are not rendered by default.

Loading

0 comments on commit 6d748a4

Please sign in to comment.