Skip to content

Commit 2bdd72f

Browse files
committed
Merge branch 'release/0.0.51'
2 parents 2a02366 + 881a82b commit 2bdd72f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+4319
-1815
lines changed

.bower.json

Lines changed: 44 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,58 @@
11
{
22
"name": "alasql",
33
"description":"AlaSQL - JavaScript SQL database library",
4-
"version": "0.0.49",
4+
"version": "0.0.51",
55
"license": "MIT",
6-
"keywords": ["javascript","sql","database","indexeddb","excel","localstorage"],
6+
"keywords": [
7+
"sql",
8+
"nosql",
9+
"alasql",
10+
"javascript",
11+
"parser",
12+
"database",
13+
"DBMS",
14+
"data",
15+
"query",
16+
"localStorage",
17+
"IndexedDB",
18+
"DOM-storage",
19+
"SQLite",
20+
"JSON",
21+
"Excel",
22+
"XLSX",
23+
"XLS",
24+
"CSV",
25+
"worker"
26+
],
727
"authors": ["Andrey Gershun <[email protected]>"],
828
"homepage": "alasql.org",
929
"repository": {
1030
"type": "git",
1131
"url": "https://github.com/agershun/alasql.git"
1232
},
1333
"dependencies": {
34+
"dom-storage":"2.0.1",
35+
"xlsjs":"0.7.15",
36+
"xlsx":"0.8.0"
1437
},
1538
"devDependencies": {
16-
}
39+
"gulp":"3.8.11",
40+
"gulp-changed":"1.2.1",
41+
"gulp-concat-sourcemap":"1.3.1",
42+
"gulp-shell":"0.4.1",
43+
"jison":"0.4.15",
44+
"lodash":"3.7.0",
45+
},
46+
"ignore": [
47+
"src",
48+
"test",
49+
"test-sql",
50+
"node_modules",
51+
"bower.json",
52+
"gruntfile.js",
53+
"package.json",
54+
"README.md",
55+
"bin",
56+
"lib"
57+
]
1758
}

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
### 0.0.51 "Rimini" (23.04.2015 - 02.05.2015)
4+
* alasql.options.modifier flag added
5+
* alasql.options.columnlookup flag added
6+
* SELECT * REMOVE COLUMNS a,b
7+
* SELECT * REMOVE COLUMNS LIKE 'b%'
8+
* Remove columns from .columns schema
9+
* Custom aggregators - added additional calls (init and in the cycle)
10+
* Added MEDIAN() aggregator
11+
312
### 0.0.50 "Seoul" (21.04.2015 - 22.04.2015)
413
* CREATE VERTEX and CREATE EDGE syntax
514
* Fixed MIN and MAX functions and aggregators #93

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
# AlaSQL.js - JavaScript SQL database library with support of localStorage, IndexedDB, and Excel
22

3-
Version: 0.0.50 "Seoul" Date: April 22, 2015 [Change log](CHANGELOG.md), [Release plan](RELEASES.md)
4-
5-
Please use [AlaSQL Forum](https://groups.google.com/d/forum/alasql) for discussions or [Issues](https://github.com/agershun/alasql/issues) to report bugs.
3+
Version: 0.0.51 "Rimini" Date: May 2, 2015 [Change log](CHANGELOG.md), [Release plan](RELEASES.md)
64

75
AlaSQL - '[à la SQL](http://en.wiktionary.org/wiki/%C3%A0_la)' - is a lightweight JavaScript SQL database designed to work in browser, Node.js, and Apache Cordova. It supports traditional SQL with some NoSQL functionality. Current version of AlaSQL can work in memory and use file, IndexedDB, and localStorage as a persistent storage.
86

@@ -20,6 +18,11 @@ AlaSQL is easy to use! Just add [alasql.min.js](alasql.min.js) file (about 280Kb
2018
```
2119
Run this sample in [jsFiddle](http://jsfiddle.net/agershun/15r1y9hg/) or try it in <a href="http://alasql.org/console?CREATE TABLE cities (city string, population number);INSERT INTO cities VALUES ('Rome',2863223), ('Paris',2249975),('Berlin',3517424), ('Madrid',3041579);SELECT * FROM cities WHERE population < 3500000 ORDER BY population DESC">AlaSQL console</a>.
2220

21+
Please use:
22+
* [AlaSQL Forum](https://groups.google.com/d/forum/alasql) for discussions
23+
* [Issues](https://github.com/agershun/alasql/issues) to report bugs.
24+
* [Feathub](http://feathub.com/agershun/alasql) Please, vote for new features
25+
2326
## Documentation
2427

2528
* [AlaSQL Wiki](https://github.com/agershun/alasql/wiki)
@@ -695,7 +698,13 @@ Probably, there are many of others. Please, [give me a chance](https://github.co
695698

696699
### Future Plans
697700

698-
Read my [to do](TODO.md) page
701+
Read my [to do](TODO.md) page - there are also the community generated feature requests here:
702+
703+
[![Feature Requests](http://feathub.com/agershun/alasql?format=svg)](http://feathub.com/agershun/alasql)
704+
705+
Take charge and vote on your favorite.
706+
707+
699708

700709
### Similar and related projects
701710

RELEASES.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,7 @@
1414

1515
## Next Releases:
1616

17-
### Version "Chess" 0.1.0 (20.04.2015)
18-
17+
### Version "Bernini" 0.1.0 (9.05.2015)
18+
* Recordset columns
19+
* UNION bug fixed
20+
* IE9 save file problem fixed

alasql.js

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

console/alasql.min.js

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

dist/alasql.js

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

dist/alasql.js.map

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.min.js

Lines changed: 9 additions & 9 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": "AlaSQL - JavaScript SQL database and data manipulation library",
4-
"version": "0.0.49",
4+
"version": "0.0.51",
55
"author": "Andrey Gershun <[email protected]>",
66
"directories": {
77
"example": "examples",

0 commit comments

Comments
 (0)