Skip to content

Commit bdcd078

Browse files
committed
Merge branch 'release/0.2.5'
2 parents cddb593 + b06bd79 commit bdcd078

25 files changed

+452
-280
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
AlaSQL is based on unpaid voluntary work. Thank you for taking the time to make it better.
22

3-
Ideas or input?
4-
- Just write what you feel like.
3+
Programming question?
4+
- Please use http://stackoverflow.com/questions/ask?tags=alasql
55

6-
Things that are not working?
6+
Something not working as expected?
77
- Describe the problem
88
- Provide code that replicates the problem
9-
(Feel free to make a jsfiddle from http://jsfiddle.net/vahrxxzm/ )
10-
9+
- We suggest to spawn a jsfiddle from http://jsfiddle.net/vahrxxzm
1110

CHANGELOG.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# Changelog
22
* Check https://trello.com/b/qxz65pVi/alasql-roadmap for roadmap
33

4-
### 0.2.5 "......" (xx.04.2016)
4+
_0.2.6 "Frikes" (22.04.2016)_
55
* ...
6-
* ...
7-
8-
6+
7+
0.2.5 "Polychrono" (23.03.2016)
8+
* Added: Promise chain of queries
9+
* Fix: Remove leading whitespace from fields when importing csv files
10+
* Fix: Set default option for XLSXML
11+
* Fix: Use callbacks consistently
12+
13+
914
### 0.2.4 "Exogi" (04.03.2016)
1015
* Added: Central enviroment detection
1116
* Added: SELECT * FROM ? GROUP BY a works as FIRST(*)

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
[![bitHound Score](https://www.bithound.io/github/agershun/alasql/badges/score.svg?123)](https://www.bithound.io/github/agershun/alasql)
32
[![Build status](https://api.travis-ci.org/agershun/alasql.svg)](https://travis-ci.org/agershun/alasql?123)
43
[![NPM downloads](http://img.shields.io/npm/dm/alasql.svg?style=flat&label=npm%20downloads)](https://npmjs.org/package/alasql?)
@@ -12,9 +11,9 @@ _AlaSQL is an open source project and we appreciate any and all contributions we
1211

1312
_Got a question? Ask on [Stack Overflow](http://stackoverflow.com/questions/ask?tags=AlaSQL) and tag with "alasql"._
1413

15-
1614
# AlaSQL
1715

16+
<a href="http://alasql.org"><img src="https://cloud.githubusercontent.com/assets/1063454/13632161/9fd9cd08-e5e8-11e5-98cc-dca251e7b427.png" align="left" alt="AlaSQL logo" width="82" height="82"/></a>
1817

1918
_( [à la](http://en.wiktionary.org/wiki/%C3%A0_la) [SQL](http://en.wikipedia.org/wiki/SQL) ) [ælæ ɛskju:ɛl]_ - AlaSQL is an open source SQL database for Javascript with a strong focus on query speed and datasource flexibility for relational data, schemaless data, and graph data. It works in your browser, Node.js, IO.js and Cordova.
2019

@@ -146,7 +145,7 @@ When you feel you got the grip you can check out the wiki section about [data ma
146145
The project has never received any funding and is based on unpaid voluntary work: [We really (really) love pull requests](https://github.com/agershun/alasql/blob/develop/CONTRIBUTING.md)
147146

148147

149-
AlaSQL project is very young and still in active development phase, therefore it <s>may</s> have [bugs](https://github.com/agershun/alasql/labels/Bug). Please, submit any bugs and suggestions [as an issue](https://github.com/agershun/alasql/issues/new). AlaSQL uses [Semantic Versioning](http://semver.org/) so please note that major version is zero (0.y.z) and the API can not be considered 100% stable. Consider this before using the library in production.
148+
AlaSQL project is very young and still in active development phase, therefore it <s>may</s> have [bugs](https://github.com/agershun/alasql/labels/Bug). Please, submit any bugs and suggestions [as an issue](https://github.com/agershun/alasql/issues/new). AlaSQL uses [Semantic Versioning](http://semver.org/) so please note that major version is zero (0.y.z) and the API can not be considered 100% stable. Consider this before using the library in production.
150149

151150
Please checkout the [limitations of the library](https://github.com/agershun/alasql#limitations)
152151

@@ -564,11 +563,15 @@ Please be aware that AlaSQL ~~may~~ have [bugs](https://github.com/agershun/alas
564563
565564
0. A `(FULL) OUTER JOIN` and `RIGHT JOIN` on more than 2 tables will not give the expected results. `INNER JOIN` and `LEFT JOIN` are ok.
566565
566+
0. Please use alias for field names with the same name (`SELECT a.id as a_id, b.id as b_id FORM ?`).
567+
567568
Probably, there are many of others. Please, help us to fix them by [submitting it as an issue](https://github.com/agershun/alasql/issues). Thank you!
568569
569570
570571
572+
## Bleeding edge
571573
574+
If you want to try the last development version of the library please download [this file](https://github.com/agershun/alasql/blob/develop/dist/alasql.js) or visit the [testbench](https://rawgit.com/agershun/alasql/develop/utils/testbench.html) to play around in the browser console.
572575
573576
## Tests
574577
@@ -581,6 +584,12 @@ AlaSQL uses ```mocha``` for tests. Install mocha and run
581584
```
582585
or run [test/index.html](test/index.html) for tests in browser (Please serve via localhost with for example `http-server`).
583586
587+
588+
589+
590+
591+
592+
584593
#### Tests with AlaSQL ASSERT from SQL
585594
586595
Now you can use AlaSQL [ASSERT](wiki/Assert) operator to test results of previous operation:

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,5 +58,5 @@
5858
"bin",
5959
"lib"
6060
],
61-
"version": "0.2.4"
61+
"version": "0.2.5"
6262
}

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.2.4 | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
1+
//! AlaSQL v0.2.5 | © 2014-2016 Andrey Gershun & Mathias Rangel Wulff | License: MIT
22
/*
33
@module alasql
4-
@version 0.2.4
4+
@version 0.2.5
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.

0 commit comments

Comments
 (0)