Skip to content

Commit 6d748a4

Browse files
committed
Merge branch 'release/0.5.1'
2 parents bc96062 + abc6bf8 commit 6d748a4

File tree

18 files changed

+66157
-342
lines changed

18 files changed

+66157
-342
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ test/test604.json
77
test/test251.xlsx
88
.versions
99
.npm/
10+
package-lock.json

.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ node_js:
99
# - "node"
1010
- "11"
1111
- "10"
12-
- "9"
13-
- "8"
14-
- "7"
15-
- "6"
1612

1713

1814
script: npm run test:only && npm test

CHANGELOG.md

Lines changed: 28 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,36 @@
11
# Changelog
2-
32

4-
## 0.4.11 "Lawdar" (05.10.2018)
53

6-
* Add: Specified XLSX sheet without knowing the name
7-
8-
9-
## 0.4.10 "Maoshk" (04.10.2018)
10-
11-
12-
* Add: xlsxml files with multiple sheets
13-
4+
5+
6+
7+
#0.5.1 "Qazvin" (16.09.2019)
8+
- Add: Chain OUTER JOIN's #1105
9+
- Better: Typescript typings
10+
- Better: Updated dependencies
11+
- Fix: Join on CSV files directly
12+
- Fix: OUTER JOIN bug #1101
13+
- Fix: Pivot function cast for SUM and AVG
14+
15+
16+
## 0.4.11 "Lawdar" (05.10.2018)
17+
18+
* Add: Specified XLSX sheet without knowing the name
19+
20+
21+
## 0.4.10 "Maoshk" (04.10.2018)
22+
23+
24+
* Add: xlsxml files with multiple sheets
25+
1426

1527
## 0.4.9 "Alsalfiah" (05.08.2018)
16-
17-
* Better: Error message grammar
18-
* Better: Support for Meteor code standards
19-
* Fix: dbprecision for select query
20-
* Fix: Handle promise error when reading one line csv files
21-
* Fix: AUTO_INCREMENT when using local storage
28+
29+
* Better: Error message grammar
30+
* Better: Support for Meteor code standards
31+
* Fix: dbprecision for select query
32+
* Fix: Handle promise error when reading one line csv files
33+
* Fix: AUTO_INCREMENT when using local storage
2234

2335
## 0.4.8 "Nafhan" (14.07.2018)
2436

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@
5757
"bin",
5858
"lib"
5959
],
60-
"version": "0.5.0"
60+
"version": "0.5.1"
6161
}

dist/alasql-worker.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
//! AlaSQL v0.5.0 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
1+
//! AlaSQL v0.5.1 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
22
/*
33
@module alasql
4-
@version 0.5.0
4+
@version 0.5.1
55
66
AlaSQL - JavaScript SQL database
77
© 2014-2016 Andrey Gershun & Mathias Rangel Wulff

dist/alasql-worker.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/alasql.fs.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
//! AlaSQL v0.5.0 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
1+
//! AlaSQL v0.5.1 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
22
/*
33
@module alasql
4-
@version 0.5.0
4+
@version 0.5.1
55

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

147147
/**
148148
Debug flag

dist/alasql.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
//! AlaSQL v0.5.0 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
1+
//! AlaSQL v0.5.1 | © 2014-2018 Andrey Gershun & Mathias Rangel Wulff | License: MIT
22
/*
33
@module alasql
4-
@version 0.5.0
4+
@version 0.5.1
55

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

147147
/**
148148
Debug flag

dist/alasql.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "alasql",
33
"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",
4-
"version": "0.5.0",
4+
"version": "0.5.1",
55
"author": "Andrey Gershun <[email protected]>",
66
"contributors": [
77
"Mathias Rangel Wulff <[email protected]>"

0 commit comments

Comments
 (0)