Skip to content

Commit b7f04f8

Browse files
committed
Merge branch 'release/0.0.44'
2 parents dfafb10 + 900f995 commit b7f04f8

File tree

1,515 files changed

+83102
-165076
lines changed

Some content is hidden

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

1,515 files changed

+83102
-165076
lines changed

.gitignore

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,2 @@
11
# MySQL demo database
22

3-
test/world/world_innodb.sql
4-
test/world/world.sql
5-
6-
test/world/NeptunoCreacionMySQL.sql
7-
8-
test-sql/*
9-
test-sql

CHANGELOG.md

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

3+
### 0.0.44 "Roma" (02.04.2015 - ...04.2015)
4+
* Added params to SQLite attached database: alasql('ATTACH SQLITE DATABASE a(?)',[event],cb);
5+
* Root directory was cleaned
6+
* Gulp version is updated
7+
* Fixed bug with (SELECT) and EXISTS() in SELECTS with GROUP BY
8+
39
### 0.0.43 "The Wall" (25.03.2015 - 01.04.2015)
410
* Created "develop" branch for git-flow
511
* Fixed GREATEST and LEAST() bugs

PEOPLE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ In English:
77
* SlideShare [Alasql.js fast JavaScript in-memory SQL database](http://www.slideshare.net/AndreyGershun/alasqljsfast-javascript-inmemory-sql-database)
88
* SlideShare [SQL and NoSQL in Alasql database](http://www.slideshare.net/AndreyGershun/sql-and-nosql-in-alasql)
99
* Glauco Custódio [Local Storage with AlaSQL in Cordova/Ionic Framework](http://blog.glaucocustodio.com/2015/03/30/local-storage-with-alasql-in-cordovaionic-framework/)
10+
* Paulo Diniz [AlaSQL](http://www.pdiniz.com/alasql/)
1011

1112

1213
In Chinese

README.md

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

3-
Version: 0.0.43 "The Wall" Date: April 1, 2015 [Change log](CHANGELOG.md), [Release plan](RELEASES.md)
3+
Version: 0.0.44 "Roma" Date: April 13, 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.
46

57
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.
68

RELEASES.md

Lines changed: 1 addition & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -14,81 +14,5 @@
1414

1515
## Next Releases:
1616

17-
### Version "Sapsan" 0.0.40 (25.01.2015)
18-
19-
* MERGE
20-
* Cordova Support
21-
* Tests
22-
* AUTOINCREMENT / IDENTITY
23-
* SELECT INDEX, COLUMN, VALUE on column
24-
* Bower.json
25-
* Wikibooks SQL samples as tests
26-
27-
### Version "Pacific Rim" 0.0.42 (01.02.2015)
28-
29-
* If-then-else JISON problem
30-
* UNION ORDER BY bug
31-
* T-SQL compatibility and multiple SQL Tests
32-
* Documentation
33-
* API documentation with JsDoc
34-
* WorkerJS for Node (primarily for test)
35-
36-
### Version "Sigirya" 0.0.45 (05.02.2015)
37-
38-
* package.json
39-
* Datatypes + CONVERT
40-
* Functions
41-
* Constraint and Foreign Keys, indexes, Check, Default
42-
* CONTINUE/BREAK/FOR/LOOP
43-
44-
### Version "Elbrus" 0.0.50 (10.02.2015)
45-
46-
* Transactions
47-
* SET NOCOUNT
48-
49-
### Version "Prague" 0.0.55 (20.02.2015)
50-
51-
* PIVOT/UNPIVOT
52-
53-
### Version "Manila" 0.0.60 (01.03.2015)
54-
55-
* OVER PARTITION
56-
57-
### Version "Vanilla" 0.0.63 (01.03.2015)
58-
59-
* GROUP BY HIERARCHY, TOTAL, DETAIL
60-
61-
### Version "Menlo Park" 0.0.65 (10.03.2015)
62-
63-
* CREATE FUNCTION, CREATE PROCEDURE, EXEC
64-
* Bugs
65-
* Documentation
66-
67-
### Version "Vorkuta" 0.0.70 (20.03.2015)
68-
69-
* Fluent interface improvement
70-
* Bugs
71-
* Documentation
72-
73-
### Version "San Diego" 0.0.75 (01.04.2015)
74-
75-
* NeDB, MongoDB, Redis, Cassandra NoSQL
76-
* Bugs
77-
* Documentation
78-
79-
### Version "Voronezh" 0.0.80 (10.04.2015)
80-
81-
* Compatibility
82-
83-
### Version "Rio de Janeiro" 0.0.85 (20.04.2015)
84-
* Speed
85-
86-
### Version "Quito" 0.0.90 (01.05.2015)
87-
* Memory
88-
89-
### Version "First Pancake" 0.1.0 (10.05.2015)
90-
91-
* Bugs
92-
* Speed, memory, and size optimization
93-
* Compatibility: browsers, mobiles, SQL databases
17+
### Version "Chess" 0.1.0 (20.04.2015)
9418

TODO.md

Lines changed: 85 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,88 @@
1-
# To do
1+
# TO DO
2+
3+
This file contanis unstructured ideas for future development of Alasql.
4+
5+
## Ideas
6+
7+
8+
### Version "Sapsan" 0.0.40 (25.01.2015)
9+
10+
* MERGE
11+
* Cordova Support
12+
* Tests
13+
* AUTOINCREMENT / IDENTITY
14+
* SELECT INDEX, COLUMN, VALUE on column
15+
* Bower.json
16+
* Wikibooks SQL samples as tests
17+
18+
### Version "Pacific Rim" 0.0.42 (01.02.2015)
19+
20+
* If-then-else JISON problem
21+
* UNION ORDER BY bug
22+
* T-SQL compatibility and multiple SQL Tests
23+
* Documentation
24+
* API documentation with JsDoc
25+
* WorkerJS for Node (primarily for test)
26+
27+
### Version "Sigirya" 0.0.45 (05.02.2015)
28+
29+
* package.json
30+
* Datatypes + CONVERT
31+
* Functions
32+
* Constraint and Foreign Keys, indexes, Check, Default
33+
* CONTINUE/BREAK/FOR/LOOP
34+
35+
### Version "Elbrus" 0.0.50 (10.02.2015)
36+
37+
* Transactions
38+
* SET NOCOUNT
39+
40+
### Version "Prague" 0.0.55 (20.02.2015)
41+
42+
* PIVOT/UNPIVOT
43+
44+
### Version "Manila" 0.0.60 (01.03.2015)
45+
46+
* OVER PARTITION
47+
48+
### Version "Vanilla" 0.0.63 (01.03.2015)
49+
50+
* GROUP BY HIERARCHY, TOTAL, DETAIL
51+
52+
### Version "Menlo Park" 0.0.65 (10.03.2015)
53+
54+
* CREATE FUNCTION, CREATE PROCEDURE, EXEC
55+
* Bugs
56+
* Documentation
57+
58+
### Version "Vorkuta" 0.0.70 (20.03.2015)
59+
60+
* Fluent interface improvement
61+
* Bugs
62+
* Documentation
63+
64+
### Version "San Diego" 0.0.75 (01.04.2015)
65+
66+
* NeDB, MongoDB, Redis, Cassandra NoSQL
67+
* Bugs
68+
* Documentation
69+
70+
### Version "Voronezh" 0.0.80 (10.04.2015)
71+
72+
* Compatibility
73+
74+
### Version "Rio de Janeiro" 0.0.85 (20.04.2015)
75+
* Speed
76+
77+
### Version "Quito" 0.0.90 (01.05.2015)
78+
* Memory
79+
80+
### Version "First Pancake" 0.1.0 (10.05.2015)
81+
82+
* Bugs
83+
* Speed, memory, and size optimization
84+
* Compatibility: browsers, mobiles, SQL databases
85+
286

387

488
## Next Versions

alasql-worker.js

Lines changed: 0 additions & 101 deletions
This file was deleted.

alasql-worker.js.map

Lines changed: 0 additions & 11 deletions
This file was deleted.

alasql-worker.min.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)